fullscreen_scroll_view 1.0.2 fullscreen_scroll_view: ^1.0.2 copied to clipboard
This is SingleChildScrollView but Expanded and Flex are available
FullScreenScrollView #
Have you ever wanted to put Expanded in a SingleChildScrollView?
I have.
For example, you may want to always place a button at the bottom of the screen,
If you want the entire screen to scroll when there is not enough margin, you can use this package.
Usage #
The working code is in /example.
Simply, the code is below.
FullScreenScrollView(
child: Column(
children: <Widget>[
const Text('some widget'),
const Expanded(child: SizedBox.shrink()),
ElevatedButton(
onPressed: _incrementCounter,
child: const Row(
children: [Icon(Icons.add), Text('Add widget')],
),
),
],
),
)