Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/deriegle/dart-airtable

Dart library for integrating with the Airtable API
https://github.com/deriegle/dart-airtable

airtable api dart dart-airtable dartlang flutter

Last synced: 25 days ago
JSON representation

Dart library for integrating with the Airtable API

Awesome Lists containing this project

README

        

# Dart Airtable

A library for using the Airtable API in Dart & Flutter applications

## Usage

A simple usage example:

```dart
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);
}
```

## Running the example

1. Create a `.env` file

```bash
cp .env.example .env
```

2. Fill in your API Key, Project base key and Record Name in the `.env` file

3. Run the dart file

```bash
dart example/dart_airtable_example.dart
```

## Features and bugs

Please file feature requests and bugs at the [issue tracker][tracker].

[tracker]: https://github.com/deriegle/dart-airtable/issues