fullscreen_scroll_view 1.0.2 copy "fullscreen_scroll_view: ^1.0.2" to clipboard
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')],
        ),
      ),
    ],
  ),
)
10
likes
160
points
233
downloads

Publisher

verified publisherhiba.quest

Weekly Downloads

This is SingleChildScrollView but Expanded and Flex are available

Repository (GitHub)

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on fullscreen_scroll_view