simple_rest_service 0.1.1 copy "simple_rest_service: ^0.1.1" to clipboard
simple_rest_service: ^0.1.1 copied to clipboard

A flutter package to help with Rest API integration.

example/lib/main.dart

import 'package:flutter/material.dart';

import 'home_page.dart';

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

class MyApp extends StatelessWidget {
  const MyApp({super.key});

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Example',
      theme: ThemeData(
        colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
        useMaterial3: true,
      ),
      home: const HomePage(),
    );
  }
}
3
likes
0
points
67
downloads

Publisher

unverified uploader

Weekly Downloads

A flutter package to help with Rest API integration.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

ansicolor, dio, flutter

More

Packages that depend on simple_rest_service