eticon_api 1.1.1 copy "eticon_api: ^1.1.1" to clipboard
eticon_api: ^1.1.1 copied to clipboard

outdated

This package will help you quickly and easily work with HTTP REQUESTS. All you need to do is select one of the 4 required requests: GET, POST, DELETE, PUT

example/lib/main.dart

import 'package:eticon_api/eticon_api.dart';
import 'package:flutter/material.dart';

void main() async {
  Api.init(baseUrl: 'https://example.com/');
  bool tokenLoaded = await Api.loadTokenFromMemory();
  if (tokenLoaded) {
    print(Api.token);
  }
  runApp(MyApp());
}

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: MyHomePage(),
    );
  }
}

class MyHomePage extends StatefulWidget {
  @override
  _MyHomePageState createState() => _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text('ETICON API Example'),
      ),
      body: Center(
        child: GestureDetector(
          onTap: getRequest,
          child: Container(
            width: 150,
            height: 150,
            color: Colors.black,
          ),
        ),
      ),
    );
  }

  Future<void> getRequest() async {
    try {
      Map<String, dynamic> response = await Api.get(
        method: 'product',
      );
    } on APIException catch (error) {
      print('ERROR CODE: ${error.code}');
    }
  }
}
12
likes
0
pub points
60%
popularity

Publisher

verified publishereticon.ru

This package will help you quickly and easily work with HTTP REQUESTS. All you need to do is select one of the 4 required requests: GET, POST, DELETE, PUT

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter, http, shared_preferences

More

Packages that depend on eticon_api