mirror of
https://github.com/ente-io/ente.git
synced 2025-08-13 17:57:31 +00:00
[mob][photos] Fix buggy create album
This commit is contained in:
@@ -180,6 +180,7 @@ class TextInputDialog extends StatefulWidget {
|
||||
final TextEditingController? textEditingController;
|
||||
final List<TextInputFormatter>? textInputFormatter;
|
||||
final TextInputType? textInputType;
|
||||
final bool popnavAfterSubmission;
|
||||
const TextInputDialog({
|
||||
required this.title,
|
||||
this.body,
|
||||
@@ -200,6 +201,7 @@ class TextInputDialog extends StatefulWidget {
|
||||
this.textEditingController,
|
||||
this.textInputFormatter,
|
||||
this.textInputType,
|
||||
this.popnavAfterSubmission = true,
|
||||
super.key,
|
||||
});
|
||||
|
||||
@@ -273,7 +275,7 @@ class _TextInputDialogState extends State<TextInputDialog> {
|
||||
maxLength: widget.maxLength,
|
||||
submitNotifier: _submitNotifier,
|
||||
onSubmit: widget.onSubmit,
|
||||
popNavAfterSubmission: true,
|
||||
popNavAfterSubmission: widget.popnavAfterSubmission,
|
||||
showOnlyLoadingState: widget.showOnlyLoadingState,
|
||||
textCapitalization: widget.textCapitalization,
|
||||
alwaysShowSuccessState: widget.alwaysShowSuccessState,
|
||||
|
Reference in New Issue
Block a user