imSanjaySoni/ObscureWidget
画面の録画中は、子要素をぼかすObscureWidgetプラグインです。ObscureWidget.builder()は、画面が録画されているときにカスタム処理を追加するための追加制御を提供します。
- Stars
- 13
- Forks
- 0
- 最終プッシュ(UTC)
- 2023/09/23
- プロジェクト状態
- 公開中
言語DartRubySwiftObjective-C
技術トピック
使用している依存関係
依存関係一覧 3 件
- flutter
{"sdk":"flutter"} - flutter_test開発用
{"sdk":"flutter"} - flutter_lints開発用
^2.0.0
元の README
以下は英語原文のスナップショットです。最新版は GitHub をご覧ください。
README を開く / 閉じる
ObscureWidget Plugin
Platform iOS Pub Pub Pub Pub Points GitHub issues License
ObscureWidget() blurs its child when the screen is being captured. ObscureWidget.builder() gives extra control to add custom handling when recording the screen. currently supported on only the iOS platform.
Example
| Demo | Initial | While Recording |
|---|---|---|
| Demo | Demo | Demo |
Usages
Let's look at how to use the ObscureWidget, ObscureWidget.builder(), and .obscured() extensions.
ObscureWidget
supported parameters blur, blurColor, borderRadius, and colorOpacity
ObscureWidget(
child: Container(
width: double.infinity,
color: Colors.amber,
padding: const EdgeInsets.all(18.0),
child: Text(
'Secure Text',
style: Theme.of(context).textTheme.headline6,
),
),
)
with .obscured() extension
Container(
width: double.infinity,
color: Colors.amber,
padding: const EdgeInsets.all(18.0),
child: Text(
'Other Secure Text with extension',
style: Theme.of(context).textTheme.headline6,
),
).obscured(blur: 2, blurColor: Colors.red),
ObscureWidget.builder()
use this for custom implementation
ObscureWidget.builder(
obscureBuilder: (context, isCaptured, child) {
return Container(
decoration: BoxDecoration(
border: Border.all(
width: 4,
color: isCaptured ? Colors.red : Colors.green,
),
),
child: child,
);
},
child: Container(
width: double.infinity,
color: Colors.black,
padding: const EdgeInsets.all(18.0),
child: Text(
'Other Secure Text with builder constructor',
style: Theme.of(context).textTheme.headline6?.copyWith(color: Colors.white),
),
),
)