From dd914e3c0aa7b507564fd090704561cbf2940c26 Mon Sep 17 00:00:00 2001 From: David Senk Date: Wed, 4 Sep 2024 20:21:23 -0400 Subject: [PATCH] about info --- lib/About.dart | 36 +++++++++++++++++++++++++++++++++--- 1 file changed, 33 insertions(+), 3 deletions(-) diff --git a/lib/About.dart b/lib/About.dart index e31dde6..d8eaf83 100644 --- a/lib/About.dart +++ b/lib/About.dart @@ -5,9 +5,39 @@ class About extends StatelessWidget { @override Widget build(BuildContext context) { - return const Padding( - padding: EdgeInsets.all(16.0), - child: Text("About"), + return DefaultTextStyle( + style: Theme.of(context).textTheme.bodyLarge!, + child: const SingleChildScrollView( + child: Padding( + padding: EdgeInsets.all(16.0), + child: Text( + 'Ything Radio is an app that is intended to provide a demonstration of the ' + 'open source ything_radio app. This app is used to provide the ability for the ' + '"look and feel" of the app to be tested on real devices for those wishing to ' + 'either use the code as a template for themselves; or, alternatively, have Ything LLC ' + 'create a custom app for them!' + '\n\n' + 'This app intentionally does not provide a method to change the streaming source ' + 'as it is intended for use by internet radio stations to provide a dedicated app ' + 'for their radio station. This is not intended to be an app for generic usage for ' + 'multiple radio stations, a discovery platform, or to facilitate user input for ' + 'internet radio sites.' + '\n\n' + 'This app has been designed to run across all platforms!' + '\n\n' + 'Android, iOS, MacOS, Windows, Linux, and Web!' + '\n\n' + 'Have a single unified experience across all platforms for your users!' + '\n\n' + 'Want to have us modify this app for you? Reach out at info@ything.net ' + 'We can add additional features for you! Schedule views, up next listings, ' + 'and even custom user interactivity! ' + '\n\n' + 'We look forward to hearing from you soon! We would love to build your app!', + textAlign: TextAlign.justify, + ), + ), + ), ); } }