|
@@ -31,8 +31,8 @@ class QRCodeWithLogo extends StatefulWidget implements FWidget {
|
|
|
const QRCodeWithLogo(
|
|
|
this.qrData, {
|
|
|
Key? key,
|
|
|
- this.codeStatement = "QRCodeStatement",
|
|
|
- this.operationStatement = "QRCodeOperationStatement",
|
|
|
+ this.codeStatement,
|
|
|
+ this.operationStatement,
|
|
|
this.operationSuccessCallback,
|
|
|
this.size = 280,
|
|
|
this.logoSize,
|
|
@@ -83,25 +83,29 @@ class _QRCodeWithLogoState extends State<QRCodeWithLogo> {
|
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
|
children: [
|
|
|
qrFutureBuilder,
|
|
|
- FPadding(
|
|
|
- padding: EdgeInsets.symmetric(vertical: 20, horizontal: 40)
|
|
|
- .copyWith(bottom: 5),
|
|
|
- child: FText(widget.codeStatement!),
|
|
|
- ),
|
|
|
- FInk(
|
|
|
- decoration: UnderlineTabIndicator(
|
|
|
+ if (widget.codeStatement != null)
|
|
|
+ FPadding(
|
|
|
+ padding: EdgeInsets.symmetric(vertical: 20, horizontal: 40)
|
|
|
+ .copyWith(bottom: 5),
|
|
|
+ child: FText(widget.codeStatement!),
|
|
|
+ ),
|
|
|
+ if (widget.operationStatement != null)
|
|
|
+ FInk(
|
|
|
+ decoration: UnderlineTabIndicator(
|
|
|
borderSide: BorderSide(color: Colors.blue),
|
|
|
- insets: EdgeInsets.fromLTRB(0, 0, 0, 1)),
|
|
|
- child: FInkWell(
|
|
|
+ insets: EdgeInsets.fromLTRB(0, 0, 0, 1),
|
|
|
+ ),
|
|
|
+ child: FInkWell(
|
|
|
child: FText(
|
|
|
widget.operationStatement!,
|
|
|
style: TextStyle(color: Colors.blue),
|
|
|
),
|
|
|
onTap: () => {
|
|
|
- Clipboard.setData(ClipboardData(text: widget.qrData)),
|
|
|
- widget.operationSuccessCallback?.call()
|
|
|
- }),
|
|
|
- )
|
|
|
+ Clipboard.setData(ClipboardData(text: widget.qrData)),
|
|
|
+ widget.operationSuccessCallback?.call()
|
|
|
+ },
|
|
|
+ ),
|
|
|
+ )
|
|
|
],
|
|
|
),
|
|
|
),
|