mirror of
https://gitlab.com/veilid/veilidchat.git
synced 2025-07-20 21:28:41 -04:00
Accessibility update
This commit is contained in:
parent
be8014c97a
commit
3b1cb53b8a
55 changed files with 1089 additions and 807 deletions
|
@ -31,7 +31,7 @@ class VeilidChatApp extends StatelessWidget {
|
|||
super.key,
|
||||
});
|
||||
|
||||
static const String name = 'VeilidChat';
|
||||
static const name = 'VeilidChat';
|
||||
|
||||
final ThemeData initialThemeData;
|
||||
|
||||
|
@ -125,7 +125,7 @@ class VeilidChatApp extends StatelessWidget {
|
|||
@override
|
||||
Widget build(BuildContext context) => FutureProvider<VeilidChatGlobalInit?>(
|
||||
initialData: null,
|
||||
create: (context) async => VeilidChatGlobalInit.initialize(),
|
||||
create: (context) => VeilidChatGlobalInit.initialize(),
|
||||
builder: (context, __) {
|
||||
final globalInit = context.watch<VeilidChatGlobalInit?>();
|
||||
if (globalInit == null) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue