opt add ab id and delete file dialog ui

Signed-off-by: 21pages <pages21@163.com>
This commit is contained in:
21pages 2023-08-15 10:11:04 +08:00
parent e01377e100
commit 923d76cf69
2 changed files with 10 additions and 6 deletions

View File

@ -346,6 +346,7 @@ class _AddressBookState extends State<AddressBook> {
close();
}
double marginBottom = 4;
return CustomAlertDialog(
title: Text(translate("Add ID")),
content: Column(
@ -367,7 +368,7 @@ class _AddressBookState extends State<AddressBook> {
),
],
),
),
).marginOnly(bottom: marginBottom),
TextField(
controller: idController,
inputFormatters: [IDTextInputFormatter()],
@ -379,7 +380,7 @@ class _AddressBookState extends State<AddressBook> {
translate('Alias'),
style: style,
),
).marginOnly(top: 8, bottom: 2),
).marginOnly(top: 8, bottom: marginBottom),
TextField(
controller: aliasController,
),
@ -389,8 +390,9 @@ class _AddressBookState extends State<AddressBook> {
translate('Tags'),
style: style,
),
).marginOnly(top: 8),
Container(
).marginOnly(top: 8, bottom: marginBottom),
Align(
alignment: Alignment.centerLeft,
child: Wrap(
children: tags
.map((e) => AddressBookTag(

View File

@ -556,8 +556,10 @@ class FileController {
mainAxisAlignment: MainAxisAlignment.center,
children: [
const Icon(Icons.warning_rounded, color: Colors.red),
Text(title).paddingOnly(
left: 10,
Expanded(
child: Text(title).paddingOnly(
left: 10,
),
),
],
),