mirror of
https://github.com/Dvorinka/1356.git
synced 2026-06-04 20:12:56 +00:00
37 lines
992 B
Dart
37 lines
992 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class OnboardingIntroScreen extends StatelessWidget {
|
|
const OnboardingIntroScreen({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Scaffold(
|
|
appBar: AppBar(
|
|
title: const Text('LifeTimer'),
|
|
),
|
|
body: const Padding(
|
|
padding: EdgeInsets.all(24.0),
|
|
child: Column(
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
children: [
|
|
Text(
|
|
'Welcome to LifeTimer',
|
|
style: TextStyle(
|
|
fontSize: 32,
|
|
fontWeight: FontWeight.bold,
|
|
),
|
|
textAlign: TextAlign.center,
|
|
),
|
|
SizedBox(height: 16),
|
|
Text(
|
|
'Your 1356-day journey starts here.\nCreate your bucket list and begin your countdown.',
|
|
style: TextStyle(fontSize: 18),
|
|
textAlign: TextAlign.center,
|
|
),
|
|
],
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|