m3e_loading_indicator 0.0.1 copy "m3e_loading_indicator: ^0.0.1" to clipboard
m3e_loading_indicator: ^0.0.1 copied to clipboard

A Flutter package providing Material 3 Expressive (M3E) shape morphing loading indicators with vector path interpolation.

example/lib/main.dart

// Copyright (c) 2026 Mudit Purohit
//
// This source code is licensed under the MIT license found in the
// LICENSE file in the root directory of this source tree.

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

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

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

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'M3E Loading Indicator Demo',
      debugShowCheckedModeBanner: false,
      theme: ThemeData(
        colorScheme: ColorScheme.fromSeed(
          seedColor: Colors.deepPurple,
          brightness: Brightness.light,
        ),
        useMaterial3: true,
      ),
      darkTheme: ThemeData(
        colorScheme: ColorScheme.fromSeed(
          seedColor: Colors.deepPurple,
          brightness: Brightness.dark,
        ),
        useMaterial3: true,
      ),
      home: const M3ELoadingIndicatorScreen(),
    );
  }
}
1
likes
160
points
85
downloads

Documentation

API reference

Publisher

verified publishermuditpurohit.tech

Weekly Downloads

A Flutter package providing Material 3 Expressive (M3E) shape morphing loading indicators with vector path interpolation.

Repository (GitHub)
View/report issues

License

MIT (license)

Dependencies

flutter, flutter_m3shapes_extended

More

Packages that depend on m3e_loading_indicator