mirror of
https://github.com/haorendashu/nowser.git
synced 2025-12-17 09:54:19 +01:00
74 lines
1.7 KiB
Dart
74 lines
1.7 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:nostr_sdk/utils/string_util.dart';
|
|
|
|
import '../../../util/router_util.dart';
|
|
import '../../const/base.dart';
|
|
import 'text_input_dialog_inner_component.dart';
|
|
|
|
class TextInputDialog extends StatefulWidget {
|
|
String title;
|
|
|
|
String? hintText;
|
|
|
|
String? value;
|
|
|
|
bool Function(BuildContext, String)? valueCheck;
|
|
|
|
TextInputDialog(
|
|
this.title, {
|
|
this.hintText,
|
|
this.value,
|
|
this.valueCheck,
|
|
});
|
|
|
|
@override
|
|
State<StatefulWidget> createState() {
|
|
return _TextInputDialog();
|
|
}
|
|
|
|
static Future<String?> show(BuildContext context, String title,
|
|
{String? value,
|
|
String? hintText,
|
|
bool Function(BuildContext, String)? valueCheck}) async {
|
|
return await showDialog<String>(
|
|
context: context,
|
|
builder: (_context) {
|
|
return TextInputDialog(
|
|
StringUtil.breakWord(title),
|
|
hintText: hintText,
|
|
value: value,
|
|
valueCheck: valueCheck,
|
|
);
|
|
});
|
|
}
|
|
}
|
|
|
|
class _TextInputDialog extends State<TextInputDialog> {
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
var themeData = Theme.of(context);
|
|
var main = TextInputDialogInnerComponent(
|
|
widget.title,
|
|
hintText: widget.hintText,
|
|
value: widget.value,
|
|
valueCheck: widget.valueCheck,
|
|
);
|
|
|
|
return Dialog(
|
|
child: FocusScope(
|
|
autofocus: true,
|
|
child: GestureDetector(
|
|
behavior: HitTestBehavior.opaque,
|
|
onTap: () {
|
|
RouterUtil.back(context);
|
|
},
|
|
child: Container(
|
|
padding: EdgeInsets.all(Base.BASE_PADDING * 2),
|
|
child: main,
|
|
),
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|