Skip to content

Commit

Permalink
Color
Browse files Browse the repository at this point in the history
  • Loading branch information
andoriyaprashant committed Jan 11, 2024
1 parent 3612589 commit 944e5e1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/screens/lg_settings.dart
Original file line number Diff line number Diff line change
Expand Up @@ -201,19 +201,19 @@ class _LGSettingsState extends State<LGSettings> with TickerProviderStateMixin {
});
});
},
style: ElevatedButton.styleFrom(backgroundColor: Colors.white,shape: const RoundedRectangleBorder(borderRadius: BorderRadius.all(Radius.circular(50)))),
style: ElevatedButton.styleFrom(backgroundColor: ThemeColors.primaryColor,shape: const RoundedRectangleBorder(borderRadius: BorderRadius.all(Radius.circular(50)))),
child: Row(
children: [
const SizedBox(width: 5,),
const Text('CONNECT',style: TextStyle(fontSize: 17.5),),
const Text('CONNECT', style: TextStyle(fontSize: 17.5, color: Colors.white,),),
const SizedBox(width: 10,),
_loading ?
SizedBox(
width: 20,
height: 20,
child: CircularProgressIndicator(strokeWidth: 3,color: ThemeColors.backgroundColor,),
) :
const Icon(Icons.cast_connected_outlined,size: 25,)
const Icon(Icons.cast_connected_outlined,size: 25, color: Colors.white, )
],
),
),
Expand Down

0 comments on commit 944e5e1

Please sign in to comment.