about info

This commit is contained in:
2024-09-04 20:21:23 -04:00
parent c195a3fb1c
commit dd914e3c0a

View File

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