chore: initial release
This commit is contained in:
1362
lib/features/navigation/views/chats_list_page.dart
Normal file
1362
lib/features/navigation/views/chats_list_page.dart
Normal file
File diff suppressed because it is too large
Load Diff
25
lib/features/navigation/views/splash_launcher_page.dart
Normal file
25
lib/features/navigation/views/splash_launcher_page.dart
Normal file
@@ -0,0 +1,25 @@
|
||||
import 'package:flutter/material.dart';
|
||||
import '../../../shared/theme/theme_extensions.dart';
|
||||
|
||||
class SplashLauncherPage extends StatelessWidget {
|
||||
const SplashLauncherPage({super.key});
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return Scaffold(
|
||||
backgroundColor: context.conduitTheme.surfaceBackground,
|
||||
body: Center(
|
||||
child: SizedBox(
|
||||
width: 28,
|
||||
height: 28,
|
||||
child: CircularProgressIndicator(
|
||||
strokeWidth: 2.5,
|
||||
valueColor: AlwaysStoppedAnimation<Color>(
|
||||
context.conduitTheme.loadingIndicator,
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user