nd_mvvm 2.0.0 copy "nd_mvvm: ^2.0.0" to clipboard
nd_mvvm: ^2.0.0 copied to clipboard

A library implement MVVM pattern.

example/lib/main.dart

//
//  main.dart
//  nd_mvvm/sample
//
//  Created by Nguyen Duc Hiep on 22/11/2022.
//

import 'package:example/home_page.dart';
import 'package:flutter/material.dart';

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

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

  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return const MaterialApp(
      title: 'NDMVVM Example',
      home: HomePage(),
    );
  }
}
0
likes
120
pub points
1%
popularity

Publisher

unverified uploader

A library implement MVVM pattern.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter, logging

More

Packages that depend on nd_mvvm