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