fcnui_base 1.0.4 copy "fcnui_base: ^1.0.4" to clipboard
fcnui_base: ^1.0.4 copied to clipboard

discontinued

Base package for fcnui applications. Contains common code for all fcnui applications.

example/lib/main.dart

/// 0. Components can be found in: lib/components (or the folder specified in fcnui.json)
import 'package:fcnui_base/fcnui_base.dart';
import 'package:flutter/material.dart';

void main() {
  /// 1. Wrap your app with [DefaultStoreProvider]
  runApp(DefaultStoreProvider(child: const MyApp()));
}

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

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(useMaterial3: true),
      darkTheme: ThemeData(useMaterial3: true, brightness: Brightness.dark),
      themeMode: ThemeMode.system,
      home: const MyHomePage(title: 'Flutter Demo Home Page'),
    );
  }
}

class MyHomePage extends StatefulWidget {
  const MyHomePage({super.key, required this.title});

  final String title;

  @override
  State<MyHomePage> createState() => _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        backgroundColor: Theme.of(context).colorScheme.inversePrimary,
        title: Text(widget.title),
      ),
      body: Center(
        child: SingleChildScrollView(
          padding: const EdgeInsets.all(20),
          child: const Column(
            mainAxisAlignment: MainAxisAlignment.center,
            children: <Widget>[],
          ).spaced(20),
        ),
      ),
    );
  }
}
3
likes
50
points
61
downloads

Publisher

verified publishershoh.dev

Weekly Downloads

Base package for fcnui applications. Contains common code for all fcnui applications.

Homepage
Repository (GitHub)
View/report issues

Documentation

Documentation

License

MIT (license)

Dependencies

dropdown_button2, equatable, flex_color_scheme, flutter, flutter_form_builder, flutter_redux, form_builder_validators, get_it, http, pluto_grid, redux

More

Packages that depend on fcnui_base