http_repository 1.1.2 copy "http_repository: ^1.1.2" to clipboard
http_repository: ^1.1.2 copied to clipboard

outdated

Simple way to create service repository crud with authorization

example/lib/main.dart

import 'package:flutter/material.dart';

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

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

class _MyAppState extends State<MyApp> {
  String _platformVersion = 'Unknown';

  @override
  void initState() {
    super.initState();
  }

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Plugin example app'),
        ),
        body: Center(
          child: Text('Running on: $_platformVersion\n'),
        ),
      ),
    );
  }
}
1
likes
130
points
27
downloads

Publisher

unverified uploader

Weekly Downloads

Simple way to create service repository crud with authorization

Repository (GitHub)

Documentation

API reference

License

MIT (license)

Dependencies

flutter, flutter_web_plugins, http

More

Packages that depend on http_repository