remove scroll-physics from single winner & placement ruleset listview
Some checks failed
Pull Request Pipeline / test (pull_request) Successful in 47s
Pull Request Pipeline / lint (pull_request) Failing after 50s

This commit is contained in:
2026-05-09 12:33:54 +02:00
parent 8b7a519e64
commit 6f155182b5
2 changed files with 3 additions and 1 deletions

View File

@@ -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';

View File

@@ -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(