flutter_responsive_flex_grid

Last updated:

0 purchases

flutter_responsive_flex_grid Image
flutter_responsive_flex_grid Images
Add to Cart

Description:

flutter responsive flex grid

Flutter Responsive Flex Grid #

Flutter package to create Responsive Grid Design like Bootstrap.

Adding Grid Items with weighted width
Adding weighted width for xs: Extra Small, sm: Small, mb: Medium, lg: Large, xl: Extra Large, xxl: Extra Extra Large Devices
Adding Padding between Grid Items




Installation #
Use this package as a library
Depend on it
Run this command:
With Flutter:
$ flutter pub add flutter_responsive_flex_grid
copied to clipboard
This will add a line like this to your package's pubspec.yaml (and run an implicit dart pub get):
dependencies:
flutter_responsive_flex_grid: ^0.0.1
copied to clipboard
Alternatively, your editor might support flutter pub get. Check the docs for your editor to learn more.
Import it
Now in your Dart code, you can use:
import 'package:flutter_responsive_flex_grid/flutter_responsive_flex_grid.dart';
copied to clipboard
Usage #
Use ResponsiveGrid Widget to create Responsive Grid, Append ResponsiveGridItem as children
ResponsiveGrid(
gridSpacing: 8,
children: [
ResponsiveGridItem(
child: _buildColorContainer(Colors.red),
xs: 50,
sm: 60,
md: 70,
lg: 80,
xl: 90,
xxl: 100,
),
ResponsiveGridItem(
child: _buildColorContainer(Colors.green),
xs: 50,
sm: 60,
md: 70,
lg: 80,
xl: 90,
xxl: 100,
),
ResponsiveGridItem(
child: _buildColorContainer(Colors.blue),
),
ResponsiveGridItem(
child: _buildColorContainer(Colors.grey),
),
ResponsiveGridItem(
child: _buildColorContainer(Colors.black),
),
ResponsiveGridItem(
child: _buildColorContainer(Colors.red),
),
ResponsiveGridItem(
child: _buildColorContainer(Colors.green),
),
ResponsiveGridItem(
child: _buildColorContainer(Colors.blue),
),
ResponsiveGridItem(
child: _buildColorContainer(Colors.grey),
),
ResponsiveGridItem(
child: _buildColorContainer(Colors.black),
),
ResponsiveGridItem(
child: _buildColorContainer(Colors.yellowAccent),
),
ResponsiveGridItem(
child: _buildColorContainer(Colors.tealAccent),
),
]
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.