constrained_scroll_view

Creator: coderz1093

Last updated:

0 purchases

constrained_scroll_view Image
constrained_scroll_view Images

Languages

Categories

Add to Cart

Description:

constrained scroll view

Motivation #
Whenever the size of the screen changes, by the keyboard or the mobile resolution, our content should react to those changes dynamically and still be visible to the user. How do we do that? The easiest solution would be just wrapping the content with the SingleChildScrollView or ListView which makes the child scorllable by default. But what if the content is smaller than the height of the screen in vertical view and it bigger in horizontal view? You wouldn't want to make it scrollable when it's in vertical view. ConstrainedScrollView solves this problem elegantly.
Getting started #
Just wrap your Column widget with the ConstrainedScrollView. That's it. It works!
ConstrainedScrollView(
child: Column(
children: [
...
],
),
)
copied to clipboard
If you want to use the Flexible or Expanded widgets within the Column, then set the flex property to true.
ConstrainedScrollView(
flex: true,
child: Column(
children: [
...
],
),
)
copied to clipboard

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.