remove scroll-physics from single winner & placement ruleset listview
This commit is contained in:
@@ -85,7 +85,7 @@ class AppLocalizationsDe extends AppLocalizations {
|
||||
String get delete_match => 'Spiel löschen';
|
||||
|
||||
@override
|
||||
String get drag_to_set_placement => 'Ziehen, um die Platzierung zu setzen';
|
||||
String get drag_to_set_placement => 'Drag to set placement';
|
||||
|
||||
@override
|
||||
String get edit_group => 'Gruppe bearbeiten';
|
||||
|
||||
@@ -144,6 +144,7 @@ class _MatchResultViewState extends State<MatchResultView> {
|
||||
});
|
||||
},
|
||||
child: ListView.builder(
|
||||
physics: NeverScrollableScrollPhysics(),
|
||||
itemCount: allPlayers.length,
|
||||
itemBuilder: (context, index) {
|
||||
return CustomRadioListTile(
|
||||
@@ -217,6 +218,7 @@ class _MatchResultViewState extends State<MatchResultView> {
|
||||
),
|
||||
Expanded(
|
||||
child: ReorderableListView.builder(
|
||||
physics: const NeverScrollableScrollPhysics(),
|
||||
padding: EdgeInsets.zero,
|
||||
proxyDecorator: (child, index, animation) {
|
||||
return Material(
|
||||
|
||||
Reference in New Issue
Block a user