responsive_gridview 1.0.3 copy "responsive_gridview: ^1.0.3" to clipboard
responsive_gridview: ^1.0.3 copied to clipboard

outdated

Responsive GridViw For All Platform, Configure custom columns count, Adjust Child and Overall Padding

Flutter package to create Grid View with custom child count and responsive.

Features #

Custom GridView, Responsive GirdView

Getting started #

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

dependencies:
  ...
  responsive_gridview: <latest_version>

In your library add the following import:

import 'package:responsive_gridview/responsive_gridview.dart';
ResponsiveGridView(
  column: 2, // 2 items per row, we can configure 1 to many
  verticalSpacing: 20, // Vertical spacing between 2 items, default is 12
  horizontalSpacing: 20, // Horizontal spacing between 2 items, default is 12
  padding: const EdgeInsets.all(8), // Overall outer padding, default is 12
  children: [
    Text("Hello"),
    Text("Flutter"),
    Image.network("www.google.com/nj65372g"),
    Text("Thank You!"),
  ]
)
11
likes
0
points
26
downloads

Publisher

verified publishertherohitsoni.in

Weekly Downloads

Responsive GridViw For All Platform, Configure custom columns count, Adjust Child and Overall Padding

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

cupertino_icons, flutter

More

Packages that depend on responsive_gridview