diff --git a/lib/views/round_view.dart b/lib/views/round_view.dart index e365798..14da2ca 100644 --- a/lib/views/round_view.dart +++ b/lib/views/round_view.dart @@ -79,12 +79,15 @@ class _RoundViewState extends State { child: SizedBox( height: 40, child: CupertinoSegmentedControl( + unselectedColor: theme.backgroundTintColor, + selectedColor: theme.primaryColor, groupValue: _caboPlayerIndex, children: Map.fromIterable( widget.gameSession.players.asMap().keys, value: (index) => Padding( padding: EdgeInsets.symmetric( - horizontal: gameSession.players.length > 3 ? 7 : 15, + horizontal: + gameSession.players.length > 3 ? 11 : 15, ), child: Text( widget.gameSession.players[index],