flutter_rest_client 0.2.9-prerelease copy "flutter_rest_client: ^0.2.9-prerelease" to clipboard
flutter_rest_client: ^0.2.9-prerelease copied to clipboard

A rest client module for flutter.

example/lib/main.dart

import 'package:flutter/material.dart';

void main() {
  WidgetsFlutterBinding.ensureInitialized();

  runApp(const MyApp());
}

class MyApp extends StatelessWidget {
  const MyApp({Key? key}) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Container(
        color: Colors.white,
        child: MaterialButton(
          onPressed: () async {},
          child: const Text('Load Data'),
        ),
      ),
    );
  }
}