veto 0.0.1+5 copy "veto: ^0.0.1+5" to clipboard
veto: ^0.0.1+5 copied to clipboard

outdated

A lightweight MVVM state management solution originally inspired by the FilledStacks stacked package.

example/lib/main.dart

import 'package:example/views/first/first_veto_view.dart';
import 'package:flutter/material.dart';

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

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

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Veto',
      theme: ThemeData(
        primarySwatch: Colors.green,
      ),
      home: const FirstVetoView(),
    );
  }
}
2
likes
0
points
15
downloads

Publisher

verified publisherultrawideturbodev.com

Weekly Downloads

A lightweight MVVM state management solution originally inspired by the FilledStacks stacked package.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter

More

Packages that depend on veto