2026-03-17 18:05:49 +08:00
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
|
|
|
|
|
|
class AuthBootScreen extends StatelessWidget {
|
|
|
|
|
const AuthBootScreen({super.key});
|
|
|
|
|
|
|
|
|
|
@override
|
|
|
|
|
Widget build(BuildContext context) {
|
2026-03-25 12:36:31 +08:00
|
|
|
return Scaffold(
|
|
|
|
|
backgroundColor: const Color(0xFFEFF8FF),
|
2026-03-17 18:05:49 +08:00
|
|
|
body: SafeArea(
|
|
|
|
|
child: Center(
|
2026-03-25 12:36:31 +08:00
|
|
|
child: Image.asset(
|
|
|
|
|
'assets/branding/assistant_octopus_foreground.png',
|
|
|
|
|
width: 260,
|
2026-03-17 18:05:49 +08:00
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|