newFeedbackBranch #19

Merged
nisa9769 merged 3 commits from newFeedbackBranch into master 2022-05-20 07:56:15 +02:00
3 changed files with 13 additions and 25 deletions

View File

@ -117,7 +117,7 @@ class FormForFeedbackState extends State<FormForFeedback> {
const SizedBox(height: 30), const SizedBox(height: 30),
Text( Text(
'What do you think about our app?', 'Tell us what you think',
style: TextStyle( style: TextStyle(
fontSize: 20, fontSize: 20,
color: textColor, color: textColor,
@ -251,16 +251,6 @@ class FormForFeedbackState extends State<FormForFeedback> {
const SizedBox(height: 20), const SizedBox(height: 20),
Text(
'What is on your mind? 💕',
style: TextStyle(
fontSize: 20,
color: textColor,
),
),
const SizedBox(height: 20),
CheckboxListTile( CheckboxListTile(
title: const Text("Compliment"), title: const Text("Compliment"),

View File

@ -27,9 +27,8 @@ class _HomePageState extends State<HomePage> {
child: Text( child: Text(
'Sun Chasers', 'Sun Chasers',
style: TextStyle( style: TextStyle(
fontSize: 50, fontSize: 40,
color: globals.TEXTCOLOR, color: globals.TEXTCOLOR,
fontFamily: 'Sacramento',
shadows: <Shadow>[ shadows: <Shadow>[
Shadow( Shadow(
offset: Offset(2, 2), offset: Offset(2, 2),
@ -40,11 +39,13 @@ class _HomePageState extends State<HomePage> {
), ),
), ),
), ),
const SizedBox(height: 10),
Text( Text(
'The #1 Sunny Spot Finder', 'The #1 Sunny Spot Finder',
style: TextStyle( style: TextStyle(
fontSize: 32, fontSize: 25,
fontFamily: 'Sacramento',
color: globals.TEXTCOLOR, color: globals.TEXTCOLOR,
shadows: <Shadow>[ shadows: <Shadow>[
Shadow( Shadow(

View File

@ -14,7 +14,7 @@ import 'FeedbackPage.dart';
Color _backgroundColor = const Color.fromARGB(255, 190, 146, 160); Color _backgroundColor = const Color.fromARGB(255, 190, 146, 160);
// Color status of priceRange // Color status of priceRange
Color _colorContainerLow = Colors.yellow; Color _colorContainerLow = Colors.purple;
Color _colorContainerMedium = _backgroundColor; Color _colorContainerMedium = _backgroundColor;
Color _colorContainerHigh = _backgroundColor; Color _colorContainerHigh = _backgroundColor;
@ -239,8 +239,7 @@ class _SettingsPageState extends State<SettingsPage> {
child: Text( child: Text(
'Manage account', 'Manage account',
style: TextStyle( style: TextStyle(
fontSize: 25, fontSize: 20,
fontFamily: 'Sacramento',
color: Colors.black, color: Colors.black,
shadows: <Shadow>[ shadows: <Shadow>[
Shadow( Shadow(
@ -271,8 +270,7 @@ class _SettingsPageState extends State<SettingsPage> {
child: Text( child: Text(
'Leave feedback', 'Leave feedback',
style: TextStyle( style: TextStyle(
fontSize: 32, fontSize: 20,
fontFamily: 'Sacramento',
color: Colors.black, color: Colors.black,
shadows: <Shadow>[ shadows: <Shadow>[
Shadow( Shadow(
@ -303,8 +301,7 @@ class _SettingsPageState extends State<SettingsPage> {
child: Text( child: Text(
'Log out', 'Log out',
style: TextStyle( style: TextStyle(
fontSize: 32, fontSize: 20,
fontFamily: 'Sacramento',
color: Colors.black, color: Colors.black,
shadows: <Shadow>[ shadows: <Shadow>[
Shadow( Shadow(
@ -334,7 +331,7 @@ void onClickPriceColor(String priceRange) {
_colorContainerLow = _backgroundColor; _colorContainerLow = _backgroundColor;
} else { } else {
_priceRangeBool["LowPriceRange"] = true; _priceRangeBool["LowPriceRange"] = true;
_colorContainerLow = Colors.yellow; _colorContainerLow = Colors.purple;
} }
} else if (priceRange == "MediumPriceRange") { } else if (priceRange == "MediumPriceRange") {
if (_priceRangeBool["MediumPriceRange"] == true) { if (_priceRangeBool["MediumPriceRange"] == true) {
@ -342,7 +339,7 @@ void onClickPriceColor(String priceRange) {
_colorContainerMedium = _backgroundColor; _colorContainerMedium = _backgroundColor;
} else { } else {
_priceRangeBool["MediumPriceRange"] = true; _priceRangeBool["MediumPriceRange"] = true;
_colorContainerMedium = Colors.yellow; _colorContainerMedium = Colors.purple;
} }
} else { } else {
if (_priceRangeBool["HighPriceRange"] == true) { if (_priceRangeBool["HighPriceRange"] == true) {
@ -350,7 +347,7 @@ void onClickPriceColor(String priceRange) {
_colorContainerHigh = _backgroundColor; _colorContainerHigh = _backgroundColor;
} else { } else {
_priceRangeBool["HighPriceRange"] = true; _priceRangeBool["HighPriceRange"] = true;
_colorContainerHigh = Colors.yellow; _colorContainerHigh = Colors.purple;
} }
} }
} }