Files
1356/lifetimer/lib/features/onboarding/presentation/onboarding_intro_screen.dart
T
2026-01-03 18:35:35 +01:00

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