about_page.dart (893B)
1 import 'package:flutter/material.dart'; 2 3 class AboutPage extends StatelessWidget { 4 const AboutPage({super.key}); 5 6 @override 7 Widget build(BuildContext context) { 8 return Scaffold( 9 appBar: AppBar( 10 title: const Text('About'), 11 ), 12 body: const SingleChildScrollView( 13 padding: EdgeInsets.all(16.0), 14 child: Column( 15 crossAxisAlignment: CrossAxisAlignment.start, 16 children: [ 17 Text( 18 'Virtual Pressed Penny Collector mobile application project for CINS 467 Web and Mobile App Development.', 19 textAlign: TextAlign.left, 20 style: TextStyle(color: Colors.black), 21 ), 22 SizedBox(height: 16.0), 23 Text( 24 'Developed by: Evan Alba', 25 style: TextStyle(color: Colors.black), 26 ), 27 ], 28 ), 29 ), 30 ); 31 } 32 }