airtablej 1.0.2 copy "airtablej: ^1.0.2" to clipboard
airtablej: ^1.0.2 copied to clipboard

discontinued
outdated

AirTable Flutter HTTP(s) Connection

example/lib/main.dart

import 'package:flutter/material.dart';
import 'dart:async';
import 'package:airtablej/airtablej.dart';

void main() {
  runApp(MyApp());
}

class MyApp extends StatefulWidget {
  @override
  _MyAppState createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  Map<String, dynamic> airTableData;
  bool netCheck;

  @override
  void initState() {
    super.initState();
    Future.microtask(() async{
      final Airtablej _con = new Airtablej(
        key: "YOUR_API_KEY",
        tableName: "YOUR_TABLE_NAME",
      );
      this.netCheck = await _con.connect();
      if(this.netCheck) return print("Network Err !");
      setState(() {
        this.airTableData = _con.result;
      });
    });
  }

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('JamesDev : AirTable Connect'),
        ),
        body: Center(
          child: this.netCheck == false
              ? Text("Network ERR!")
              : Text(this.airTableData ?? "loading ..."),
        ),
      ),
    );
  }
}
1
likes
0
pub points
0%
popularity

Publisher

unverified uploader

AirTable Flutter HTTP(s) Connection

Homepage
Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter, http

More

Packages that depend on airtablej