onyxsio_grid_view

Provides a Flutter grid layout.


License
MIT

Documentation

Onyxsio Grid View

Provides a Flutter grids layout.

Getting started

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

dependencies:
  onyxsio_grid_view: <latest_version>

In your library add the following import:

import 'package:onyxsio_grid_view/onyxsio_grid_view.dart';

For help getting started with Flutter, view the online documentation.

Features

This layout facilitates the browsing of uncropped peer content. Container heights are sized based on the widget size.

Staired Grid Layout

Usage

Below you'll find the code to create this grid layout:

OnyxsioGridView.builder(
        padding: EdgeInsets.all(8),
        itemCount: 20,
        physics: const BouncingScrollPhysics(),
        staggeredTileBuilder: (index) => const StaggeredTile.fit(2),
        crossAxisCount: 4, addAutomaticKeepAlives: false,
        mainAxisSpacing: 10,
        crossAxisSpacing: 10,
        shrinkWrap: true,
        itemBuilder: (context, index) => OnyxsioGridTile(
          index: index,
          heightList: [300, 220, 220, 520],
          child: child,
        ),
      )

Additional information

I'm working on my packages on my free-time, but I don't have as much time as I would. If this package or any other package I created is helping you, please consider to sponsor me so that I can take time to read the issues, fix bugs, merge pull requests and add features to these packages.

Contributions

Feel free to contribute to this project.

If you find a bug or want a feature, but don't know how to fix/implement it, please fill an issue.
If you fixed a bug or implemented a feature, please send a pull request.