Yet another PageView widget that expands its viewport as it scrolls. Exprollable is a coined word combining the words expandable and scrollable.
74
stars
5
forks
source link
The viewport fraction exceeds the upper limit when the page is fully expanded #39
Closed
fujidaiti closed 1 year ago
The code to reproduce this issue:
```dart import 'package:exprollable_page_view/exprollable_page_view.dart'; import 'package:flutter/material.dart'; void main() { runApp(const MyApp()); } class MyApp extends StatelessWidget { const MyApp({super.key}); @override Widget build(BuildContext context) { return const MaterialApp(home: Home()); } } class Home extends StatefulWidget { const Home({super.key}); @override StateThe result:
In the above GIF, the apparent page height exceeds the max height (818px) when the page is fully expanded (852px).