chore: initial release

This commit is contained in:
cogwheel0
2025-08-10 01:20:45 +05:30
commit 758615813f
218 changed files with 67743 additions and 0 deletions

File diff suppressed because it is too large Load Diff

View 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,
),
),
),
),
);
}
}