Files
social-app/apps/lib/features/auth/presentation/screens/auth_boot_screen.dart
T

22 lines
506 B
Dart

import 'package:flutter/material.dart';
class AuthBootScreen extends StatelessWidget {
const AuthBootScreen({super.key});
@override
Widget build(BuildContext context) {
final colorScheme = Theme.of(context).colorScheme;
return Scaffold(
backgroundColor: colorScheme.surface,
body: SafeArea(
child: Center(
child: Image.asset(
'assets/branding/assistant_octopus_foreground.png',
width: 260,
),
),
),
);
}
}