diff --git a/beakpeek/lib/Model/Sightings/sightings_functions.dart b/beakpeek/lib/Model/Sightings/sightings_functions.dart index d76e6e07..8f541d68 100644 --- a/beakpeek/lib/Model/Sightings/sightings_functions.dart +++ b/beakpeek/lib/Model/Sightings/sightings_functions.dart @@ -1,4 +1,5 @@ import 'package:beakpeek/Model/BirdInfo/bird.dart'; +import 'package:beakpeek/Styles/global_styles.dart'; import 'package:flutter/material.dart'; Widget getLifeListData(Bird bird, Function(Bird) goBird) { @@ -7,7 +8,7 @@ Widget getLifeListData(Bird bird, Function(Bird) goBird) { bird.commonGroup.isNotEmpty ? '${bird.commonGroup} ${bird.commonSpecies}' : bird.commonSpecies, - style: const TextStyle(color: Color.fromARGB(255, 177, 88, 88)), + style: const TextStyle(color: GlobalStyles.secondaryColor), ), onTap: () { goBird(bird); diff --git a/beakpeek/lib/Model/UserProfile/user_profile_function.dart b/beakpeek/lib/Model/UserProfile/user_profile_function.dart index 156aa57a..519645be 100644 --- a/beakpeek/lib/Model/UserProfile/user_profile_function.dart +++ b/beakpeek/lib/Model/UserProfile/user_profile_function.dart @@ -80,7 +80,7 @@ Widget progressBars(List birdNumsTotal, List numbirdsInLIfe) { FAProgressBar( currentValue: getPercent(birdNumsTotal[index], numbirdsInLIfe[index]), - displayText: '%', + // displayText: '%', size: 10, ), ], @@ -101,7 +101,7 @@ double getPercent(int numTotalBirds, int birdsInLife) { Widget levelProgressBar(int progress, int level) { return FAProgressBar( currentValue: progressPercentage(progress, level), - displayText: '%', + // displayText: '%', size: 15, ); } diff --git a/beakpeek/lib/View/Sightings/sightings.dart b/beakpeek/lib/View/Sightings/sightings.dart index 335fe07c..27097ab0 100644 --- a/beakpeek/lib/View/Sightings/sightings.dart +++ b/beakpeek/lib/View/Sightings/sightings.dart @@ -50,7 +50,7 @@ class _SightingsState extends State { context.go('/home'); }, ), - title: const Text('Life List', style: GlobalStyles.subheadingLight), + title: const Text('Life List', style: GlobalStyles.subHeadingDark), centerTitle: true, ), body: FutureBuilder>(