fullscreen_scroll_view 1.0.0+1 copy "fullscreen_scroll_view: ^1.0.0+1" to clipboard
fullscreen_scroll_view: ^1.0.0+1 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')],
        ),
      ),
    ],
  ),
)
9
likes
0
pub points
47%
popularity

Publisher

verified publisherhiba.quest

This is SingleChildScrollView but Expanded and Flex are available

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter

More

Packages that depend on fullscreen_scroll_view