[mob][photos] implemeted custom keyboard

This commit is contained in:
Aman Raj Singh Mourya
2024-06-18 13:37:32 +05:30
parent 89e7cfb357
commit aeb3e2be24
7 changed files with 435 additions and 55 deletions

View File

@@ -46,6 +46,7 @@ class TextInputWidget extends StatefulWidget {
final ValueNotifier? isEmptyNotifier;
final List<TextInputFormatter>? textInputFormatter;
final TextInputType? textInputType;
final bool? fillColor;
const TextInputWidget({
this.onSubmit,
this.onChange,
@@ -74,6 +75,7 @@ class TextInputWidget extends StatefulWidget {
this.isEmptyNotifier,
this.textInputFormatter,
this.textInputType,
this.fillColor = true,
super.key,
});
@@ -161,7 +163,7 @@ class _TextInputWidgetState extends State<TextInputWidget> {
decoration: InputDecoration(
hintText: widget.hintText,
hintStyle: textTheme.body.copyWith(color: colorScheme.textMuted),
filled: true,
filled: widget.fillColor,
fillColor: colorScheme.fillFaint,
contentPadding: const EdgeInsets.fromLTRB(
12,