active_grid_grid_builder 0.1.0 copy "active_grid_grid_builder: ^0.1.0" to clipboard
active_grid_grid_builder: ^0.1.0 copied to clipboard

discontinuedreplaced by: apptive_grid_grid_builder
outdated

A Flutter Package to build Widgets based on Data from an ActiveGrid Grid.

ActiveGrid GridBuilder #

Pub pub points popularity likes

A Flutter Package to build Widgets based on Grid Data

Setup #

In order to use any ActiveGrid Feature you must wrap your App with a ActiveGrid Widget

import 'package:active_grid_core/active_grid_core.dart';

void main() {
  runApp(
    ActiveGrid(
      options: ActiveGridOptions(
        authenticationOptions: ActiveGridAuthenticationOptions(
          autoAuthenticate = true,
        ),
      ),
      child: MyApp(),
    ),
  );
}

Authentication #

Grids need Authentication. In order to authenticate a user either manually call ActiveGrid.getClient(context).authenticate(). Alternatively you can set autoAuthenticate to true in ActiveGridAuthenticationOptions in the ActiveGridOptions

Usage #

Add ActiveGridGridBuilder to your widget tree. The builder behaves the same as FutureBuilder.

ActiveGridGridBuilder(
    user: 'USER_ID',
    space: 'SPACE_ID',
    grid: 'GRID_ID',
    builder: (context, snapshot) {
        return YourWidget(gridData: snapshot.data);
    }
);
7
likes
0
pub points
0%
popularity

Publisher

verified publisherzweidenker.de

A Flutter Package to build Widgets based on Data from an ActiveGrid Grid.

Homepage

License

unknown (LICENSE)

Dependencies

active_grid_core, flutter

More

Packages that depend on active_grid_grid_builder