easy_loading_adaptive 1.0.4 copy "easy_loading_adaptive: ^1.0.4" to clipboard
easy_loading_adaptive: ^1.0.4 copied to clipboard

Easy loading widget adaptive platform Android use Material and iOS use Cupertino

example/lib/main.dart

import 'package:easy_loading_adaptive/easy_loading.dart';
import 'package:flutter/material.dart';

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

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

  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(colorScheme: .fromSeed(seedColor: Colors.deepPurple)),
      home: const MyHomePage(title: 'Flutter Demo Home Page'),
    );
  }
}

class MyHomePage extends StatefulWidget {
  const MyHomePage({super.key, required this.title});

  final String title;

  @override
  State<MyHomePage> createState() => _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        backgroundColor: Theme.of(context).colorScheme.inversePrimary,
        title: Text(widget.title),
      ),
      body: Center(
        child: Column(
          spacing: 12,
          mainAxisAlignment: .center,
          children: [
            const SizedBox(width: 20, height: 20, child: LoadingWidget()),

            CircularProgressIndicator(color: Colors.red, strokeWidth: 2),
          ],
        ),
      ),
    );
  }
}
3
likes
160
points
182
downloads

Documentation

API reference

Publisher

verified publisherfighttech.vn

Weekly Downloads

Easy loading widget adaptive platform Android use Material and iOS use Cupertino

Homepage
Repository (GitHub)
View/report issues

License

BSD-3-Clause (license)

Dependencies

flutter, jumping_dot, universal_platform

More

Packages that depend on easy_loading_adaptive