diff --git a/assets/backup.png b/assets/backup.png deleted file mode 100644 index b17a7614..00000000 Binary files a/assets/backup.png and /dev/null differ diff --git a/assets/banner_dark.png b/assets/banner_dark.png deleted file mode 100644 index 3a2fb2a7..00000000 Binary files a/assets/banner_dark.png and /dev/null differ diff --git a/assets/chat.svg b/assets/chat.svg deleted file mode 100644 index b80f20d6..00000000 --- a/assets/chat.svg +++ /dev/null @@ -1,185 +0,0 @@ - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/assets/favicon.ico b/assets/favicon.ico deleted file mode 100644 index 52c44a43..00000000 Binary files a/assets/favicon.ico and /dev/null differ diff --git a/assets/info-logo.svg b/assets/info-logo.svg deleted file mode 100644 index 8dc935b8..00000000 --- a/assets/info-logo.svg +++ /dev/null @@ -1,168 +0,0 @@ - - - - - - - - - - - - - - - - - - - diff --git a/assets/share.png b/assets/share.png deleted file mode 100644 index 7e96adaf..00000000 Binary files a/assets/share.png and /dev/null differ diff --git a/assets/verification.png b/assets/verification.png deleted file mode 100644 index 8bc99798..00000000 Binary files a/assets/verification.png and /dev/null differ diff --git a/lib/pages/bootstrap/bootstrap_dialog.dart b/lib/pages/bootstrap/bootstrap_dialog.dart index 5a635631..fc31b897 100644 --- a/lib/pages/bootstrap/bootstrap_dialog.dart +++ b/lib/pages/bootstrap/bootstrap_dialog.dart @@ -141,7 +141,7 @@ class BootstrapDialogState extends State { ), const SizedBox(height: 16), if (_supportsSecureStorage) - CheckboxListTile( + CheckboxListTile.adaptive( contentPadding: const EdgeInsets.symmetric(horizontal: 8.0), value: _storeInSecureStorage, activeColor: Theme.of(context).colorScheme.primary, @@ -155,7 +155,7 @@ class BootstrapDialogState extends State { Text(L10n.of(context)!.storeInSecureStorageDescription), ), const SizedBox(height: 16), - CheckboxListTile( + CheckboxListTile.adaptive( contentPadding: const EdgeInsets.symmetric(horizontal: 8.0), value: _recoveryKeyCopied, activeColor: Theme.of(context).colorScheme.primary, @@ -433,8 +433,17 @@ class BootstrapDialogState extends State { body = Column( mainAxisSize: MainAxisSize.min, children: [ - Image.asset('assets/backup.png', fit: BoxFit.contain), - Text(L10n.of(context)!.yourChatBackupHasBeenSetUp), + const Icon( + Icons.check_circle_rounded, + size: 120, + color: Colors.green, + ), + const SizedBox(height: 16), + Text( + L10n.of(context)!.yourChatBackupHasBeenSetUp, + style: const TextStyle(fontSize: 20), + ), + const SizedBox(height: 16), ], ); buttons.add( diff --git a/lib/pages/chat/events/message.dart b/lib/pages/chat/events/message.dart index 5274ea41..d19f2780 100644 --- a/lib/pages/chat/events/message.dart +++ b/lib/pages/chat/events/message.dart @@ -143,8 +143,10 @@ class Message extends StatelessWidget { if (longPressSelect) SizedBox( height: 32, + width: Avatar.defaultSize, child: Checkbox.adaptive( value: selected, + shape: const CircleBorder(), onChanged: (_) => onSelect(event), ), )