isacjunior / column_scroll_view

Widget that possibility to insert Column in SingleChildScrollView

Home Page:https://pub.dev/packages/column_scroll_view

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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.4

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

About

Widget that possibility to insert Column in SingleChildScrollView

https://pub.dev/packages/column_scroll_view

License:MIT License


Languages

Language:Dart 84.0%Language:Kotlin 7.7%Language:Swift 7.6%Language:Objective-C 0.7%