Skip to content

Commit

Permalink
fix: disable scroll on TabBarView in WebviewDisplay
Browse files Browse the repository at this point in the history
  • Loading branch information
mumu-lhl committed Feb 1, 2025
1 parent c1a1579 commit 6787fa1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/pages/webview_display.dart
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,8 @@ class WebviewDisplay extends StatelessWidget {
],
)),
floatingActionButton: Button(word: word),
body: TabBarView(children: [
body:
TabBarView(physics: NeverScrollableScrollPhysics(), children: [
for (final id in dictManager.dictIds)
FutureBuilder(
future: dictManager.dicts[id]!.readWord(word),
Expand Down

0 comments on commit 6787fa1

Please sign in to comment.