v_flutter_core 0.0.19 copy "v_flutter_core: ^0.0.19" to clipboard
v_flutter_core: ^0.0.19 copied to clipboard

A core library for Flutter applications, offering essential tools and utilities for streamlined development and state management.

example/lib/main.dart

import 'package:example/pages/showcase_page.dart';
import 'package:flutter/material.dart';
import 'package:v_flutter_core/v_flutter_core.dart';

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

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

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(
        colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
        useMaterial3: true,
        extensions: [
          ReactiveTextFieldBehavior(),
          ReactiveTextFieldTheme(),
        ],
      ),
      home: const ShowcasePage(),
    );
  }
}
1
likes
130
points
10
downloads

Publisher

unverified uploader

Weekly Downloads

A core library for Flutter applications, offering essential tools and utilities for streamlined development and state management.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

collection, defer_pointer, easy_debounce, entry, flutter, flutter_hooks, flutter_portal, fpdart, gap, hooks_riverpod, reactive_forms, reactive_forms_annotations, riverpod, riverpod_annotation, rxdart, theme_tailor_annotation, time, universal_html

More

Packages that depend on v_flutter_core