Skip to content

Commit

Permalink
Mr changes
Browse files Browse the repository at this point in the history
  • Loading branch information
cp-mayank committed May 30, 2024
1 parent 39c7d37 commit 1d1133f
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion khelo/assets/locales/app_en.arb
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@
"search_team_search_placeholder_title": "Search team name",
"search_team_your_teams_title": "Your Teams",
"search_team_select_title": "Select",
"search_team_player_title": "{count, plural, =0{{count} Player} =1{{count} Player} other{{count} Players}}",
"search_team_player_title": "{count, plural, =0{{count} Players} =1{{count} Player} other{{count} Players}}",
"@search_team_player_title": {
"placeholders": {
"count": {}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,17 +46,17 @@ class TeamMemberDialog extends StatelessWidget {
),
content: SingleChildScrollView(
child: Wrap(
runSpacing: 16,
children: [
for (final member in team.players != null ? team.players! : []) ...[
UserDetailCell(
user: member,
trailing:
isForVerification ? _selectButton(context, member) : null,
),
],
],
),
runSpacing: 16,
children: (team.players ?? [])
.map(
(member) => UserDetailCell(
user: member,
trailing: isForVerification
? _selectButton(context, member)
: null,
),
)
.toList()),
),
);
}
Expand Down

0 comments on commit 1d1133f

Please sign in to comment.