-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.dart
More file actions
38 lines (34 loc) · 1.02 KB
/
Copy pathtest.dart
File metadata and controls
38 lines (34 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
// import 'package:bob/src/ui/assessment/assessment.dart';
// import 'package:flutter/material.dart';
// class SplashScreen extends StatefulWidget {
// const SplashScreen({super.key});
// @override
// State<SplashScreen> createState() => _SplashScreenState();
// }
// class _SplashScreenState extends State<SplashScreen> {
// @override
// void initState() {
// super.initState();
// Future.delayed(const Duration(seconds: 3), () {
// Navigator.pushReplacement(
// context,
// MaterialPageRoute(builder: (context) => const AssessmentScreen()),
// );
// });
// }
// @override
// Widget build(BuildContext context) {
// return const Scaffold(
// body: Center(
// child: Column(
// mainAxisAlignment: MainAxisAlignment.center,
// children: [
// // Add your splash screen content (logo, text, etc.)
// Text('BoB'),
// CircularProgressIndicator(),
// ],
// ),
// ),
// );
// }
// }