apptive_grid_grid_builder

Last updated:

0 purchases

apptive_grid_grid_builder Image
apptive_grid_grid_builder Images
Add to Cart

Description:

apptive grid grid builder

ApptiveGrid GridBuilder #

A Flutter Package to build Widgets based on Grid Data
Usage #
In order to use any ApptiveGrid Feature you must wrap your App with a ApptiveGrid Widget
import 'package:apptive_grid_core/apptive_grid_core.dart';

void main() {
runApp(
ApptiveGrid(
options: ApptiveGridOptions(
authenticationOptions: ApptiveGridAuthenticationOptions(
autoAuthenticate = true,
),
),
child: MyApp(
child: ApptiveGridGridBuilder(
uri: Uri.parse('LINK_TO_GRID'),
builder: (context, snapshot) {
// Build your app based on snapshot.data
}
),
),
),
);
}
copied to clipboard
Authentication #
Grids need Authentication. In order to authenticate a user either manually call ApptiveGrid.getClient(context).authenticate().
In order to authenticate a user either manually call ApptiveGrid.getClient(context).authenticate().
Alternatively you can set autoAuthenticate to true in ApptiveGridAuthenticationOptions in the ApptiveGridOptions this will automatically trigger the process.
Auth Redirect #
To get redirected by authentication you need to provide a custom redirectScheme in ApptiveGridAuthenticationOptions
ApptiveGrid(
options: ApptiveGridOptions(
environment: ApptiveGridEnvironment.beta,
authenticationOptions: ApptiveGridAuthenticationOptions(
autoAuthenticate: true,
redirectScheme: 'apptivegrid'
),
),
child: MyApp(),
));
copied to clipboard
Also make sure that your app can be opened with that redirect Link. For more info check the documentation of uni_links
Flutter Web #
If you want to use it with Flutter web you need to call and await enableWebAuth before runApp. This takes care of the redirect of the Authentication Server
void main() async {
await enableWebAuth(options);
runApp(ApptiveGrid(child: MyApp()));
}
copied to clipboard
API Key Auth #
If you want to authenticate with an API Key, add a ApptiveGridApiKey to the ApptiveGridAuthenticationOptions
ApptiveGridOptions(
environment: ApptiveGridEnvironment.alpha,
authenticationOptions: ApptiveGridAuthenticationOptions(
autoAuthenticate: true,
apiKey: ApptiveGridApiKey(
authKey: 'YOUR_AUTH_KEY',
password: 'YOUR_AUTH_KEY_PASSWORD',
),
)
)
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.