Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/deriegle/dart-airtable
- Owner: deriegle
- License: bsd-2-clause
- Created: 2020-04-18T19:38:30.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-08-23T05:28:37.000Z (about 1 year ago)
- Last Synced: 2024-05-10T22:02:47.204Z (6 months ago)
- Topics: airtable, api, dart, dart-airtable, dartlang, flutter
- Language: Dart
- Homepage: https://pub.dev/packages/dart_airtable
- Size: 39.1 KB
- Stars: 8
- Watchers: 4
- Forks: 10
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Funding: .github/FUNDING.yml
- License: LICENSE
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