diff --git a/lib/FeedbackPage.dart b/lib/FeedbackPage.dart index 0910ab6..b8ec1a7 100644 --- a/lib/FeedbackPage.dart +++ b/lib/FeedbackPage.dart @@ -117,7 +117,7 @@ class FormForFeedbackState extends State { const SizedBox(height: 30), Text( - 'What do you think about our app?', + 'Tell us what you think', style: TextStyle( fontSize: 20, color: textColor, @@ -251,16 +251,6 @@ class FormForFeedbackState extends State { const SizedBox(height: 20), - Text( - 'What is on your mind? 💕', - style: TextStyle( - fontSize: 20, - color: textColor, - ), - ), - - const SizedBox(height: 20), - CheckboxListTile( title: const Text("Compliment"), diff --git a/lib/HomePage.dart b/lib/HomePage.dart index 8e5608c..d3262df 100644 --- a/lib/HomePage.dart +++ b/lib/HomePage.dart @@ -27,9 +27,8 @@ class _HomePageState extends State { child: Text( 'Sun Chasers', style: TextStyle( - fontSize: 50, + fontSize: 40, color: globals.TEXTCOLOR, - fontFamily: 'Sacramento', shadows: [ Shadow( offset: Offset(2, 2), @@ -40,11 +39,13 @@ class _HomePageState extends State { ), ), ), + + const SizedBox(height: 10), + Text( 'The #1 Sunny Spot Finder', style: TextStyle( - fontSize: 32, - fontFamily: 'Sacramento', + fontSize: 25, color: globals.TEXTCOLOR, shadows: [ Shadow( diff --git a/lib/SettingsPage.dart b/lib/SettingsPage.dart index d5b1ee8..89c11db 100644 --- a/lib/SettingsPage.dart +++ b/lib/SettingsPage.dart @@ -14,7 +14,7 @@ import 'FeedbackPage.dart'; Color _backgroundColor = const Color.fromARGB(255, 190, 146, 160); // Color status of priceRange -Color _colorContainerLow = Colors.yellow; +Color _colorContainerLow = Colors.purple; Color _colorContainerMedium = _backgroundColor; Color _colorContainerHigh = _backgroundColor; @@ -239,8 +239,7 @@ class _SettingsPageState extends State { child: Text( 'Manage account', style: TextStyle( - fontSize: 25, - fontFamily: 'Sacramento', + fontSize: 20, color: Colors.black, shadows: [ Shadow( @@ -271,8 +270,7 @@ class _SettingsPageState extends State { child: Text( 'Leave feedback', style: TextStyle( - fontSize: 32, - fontFamily: 'Sacramento', + fontSize: 20, color: Colors.black, shadows: [ Shadow( @@ -303,8 +301,7 @@ class _SettingsPageState extends State { child: Text( 'Log out', style: TextStyle( - fontSize: 32, - fontFamily: 'Sacramento', + fontSize: 20, color: Colors.black, shadows: [ Shadow( @@ -334,7 +331,7 @@ void onClickPriceColor(String priceRange) { _colorContainerLow = _backgroundColor; } else { _priceRangeBool["LowPriceRange"] = true; - _colorContainerLow = Colors.yellow; + _colorContainerLow = Colors.purple; } } else if (priceRange == "MediumPriceRange") { if (_priceRangeBool["MediumPriceRange"] == true) { @@ -342,7 +339,7 @@ void onClickPriceColor(String priceRange) { _colorContainerMedium = _backgroundColor; } else { _priceRangeBool["MediumPriceRange"] = true; - _colorContainerMedium = Colors.yellow; + _colorContainerMedium = Colors.purple; } } else { if (_priceRangeBool["HighPriceRange"] == true) { @@ -350,7 +347,7 @@ void onClickPriceColor(String priceRange) { _colorContainerHigh = _backgroundColor; } else { _priceRangeBool["HighPriceRange"] = true; - _colorContainerHigh = Colors.yellow; + _colorContainerHigh = Colors.purple; } } }