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