column_scroll_view 1.0.4 copy "column_scroll_view: ^1.0.4" to clipboard
column_scroll_view: ^1.0.4 copied to clipboard

Do you need to use Column widget as a child of the SingleChildScrollView and that the column respects its properties?

ColumnScrollView #

ColumnScrollView possibility that you create and insert Column and Flex itens inside [SingleChildScrollView].

Getting Started #

In the pubspec.yaml of your flutter project, add the following dependency:

dependencies:
  ...
  column_scroll_view: ^1.0.0

In your library add the following import:

import 'package:column_scroll_view/column_scroll_view.dart';

Usage #

ColumnScrollView(
  child: Column(
    mainAxisAlignment: MainAxisAlignment.spaceAround,
    children: <Widget>[
      Container(
        color: Color(0xff222222),
        height: 120,
      ),
      Container(
        color: Color(0xff222222),
        height: 120,
      ),
      Container(
        color: Color(0xff222222),
        height: 120,
      )
    ],
  ),
)

Preview #

2
likes
140
pub points
37%
popularity

Publisher

unverified uploader

Do you need to use Column widget as a child of the SingleChildScrollView and that the column respects its properties?

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on column_scroll_view