fl_mvvm 1.0.0 copy "fl_mvvm: ^1.0.0" to clipboard
fl_mvvm: ^1.0.0 copied to clipboard

Easy MVVM pattern with Flutter.

example/lib/main.dart

import 'package:example/views/example_view.dart';
import 'package:fl_mvvm/fl_mvvm.dart';
import 'package:flutter/material.dart';

void main() {
  runApp(const ProviderScope(child: MyApp()));
}

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

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Fl MVVM Demo',
      theme: ThemeData(
        colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
        useMaterial3: true,
      ),
      home: const ExampleView(numberOfItems: 100,),
    );
  }
}
3
likes
140
points
63
downloads

Publisher

unverified uploader

Weekly Downloads

Easy MVVM pattern with Flutter.

Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-3-Clause (license)

Dependencies

flutter, flutter_riverpod

More

Packages that depend on fl_mvvm