0 purchases
dart airtable
Dart Airtable #
A library for using the Airtable API in Dart & Flutter applications
Usage #
A simple usage example:
import 'package:dart_airtable/dart_airtable.dart';
void main() async {
final apiKey = 'my-airtable-api-key'
final projectBase = 'my-airtable-project-base';
final recordName = 'Tasks';
var airtable = Airtable(apiKey: apiKey, projectBase: projectBase);
var records = await airtable.getAllRecords(recordName);
print(records);
}
copied to clipboard
Running the example #
Create a .env file
cp .env.example .env
copied to clipboard
Fill in your API Key, Project base key and Record Name in the .env file
Run the dart file
dart example/dart_airtable_example.dart
copied to clipboard
Features and bugs #
Please file feature requests and bugs at the issue tracker.
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.