live_cells 0.20.3 copy "live_cells: ^0.20.3" to clipboard
live_cells: ^0.20.3 copied to clipboard

A replacement for ChangeNotifier and ValueNotifier that is easier to use and more flexible

example/lib/main.dart

import 'package:flutter/material.dart';

import 'demos/async_demo.dart';
import 'demos/action_cell_demo1.dart';
import 'demos/action_cell_demo2.dart';
import 'demos/cell_text_field_demo1.dart';
import 'demos/cell_text_field_demo2.dart';
import 'demos/counter_demo.dart';
import 'demos/effect_cells_demo.dart';
import 'demos/mutable_computed_cell_demo.dart';
import 'demos/mutable_computed_cell_demo2.dart';
import 'demos/error_handling_demo1.dart';
import 'demos/error_handling_demo2.dart';
import 'demos/sum_demo.dart';
import 'demos/cell_checkbox_demo.dart';
import 'demos/cell_radio_demo.dart';
import 'demos/cell_restoration_demo.dart';
import 'demos/cell_slider_demo.dart';
import 'demos/cell_switch_demo.dart';
import 'demos/previous_value_demo.dart';
import 'demos/subclass_demo1.dart';
import 'demos/subclass_demo2.dart';
import 'demos/watch_demo1.dart';
import 'demos/watch_demo2.dart';

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

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

  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Live Cells Demo',
      theme: ThemeData(
        // This is the theme of your application.
        //
        // Try running your application with "flutter run". You'll see the
        // application has a blue toolbar. Then, without quitting the app, try
        // changing the primarySwatch below to Colors.green and then invoke
        // "hot reload" (press "r" in the console where you ran "flutter run",
        // or simply save your changes to "hot reload" in a Flutter IDE).
        // Notice that the counter didn't reset back to zero; the application
        // is not restarted.
        primarySwatch: Colors.blue,
      ),
      restorationScopeId: 'root',
      home: const MyHomePage(title: 'Live Cells Demo'),
    );
  }
}

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

  // This widget is the home page of your application. It is stateful, meaning
  // that it has a State object (defined below) that contains fields that affect
  // how it looks.

  // This class is the configuration for the state. It holds the values (in this
  // case the title) provided by the parent (in this case the App widget) and
  // used by the build method of the State. Fields in a Widget subclass are
  // always marked "final".

  final String title;

  @override
  Widget build(BuildContext context) {
    // This method is rerun every time setState is called, for instance as done
    // by the _incrementCounter method above.
    //
    // The Flutter framework has been optimized to make rerunning build methods
    // fast, so that you can just rebuild anything that needs updating rather
    // than having to individually change instances of widgets.
    return Scaffold(
      appBar: AppBar(
        // Here we take the value from the MyHomePage object that was created by
        // the App.build method, and use it to set our appbar title.
        title: Text(title),
      ),
      body: Center(
        // Center is a layout widget. It takes a single child and positions it
        // in the middle of the parent.
        child: Column(
          mainAxisSize: MainAxisSize.min,
          crossAxisAlignment: CrossAxisAlignment.stretch,
          children: [
            const Text(
              'Choose an example:',
              textAlign: TextAlign.center,
            ),
            Flexible(
              child: SingleChildScrollView(
                child: Padding(
                  padding: const EdgeInsets.symmetric(horizontal: 10),
                  child: Column(
                    crossAxisAlignment: CrossAxisAlignment.stretch,
                    mainAxisAlignment: MainAxisAlignment.center,
                    children: <Widget>[
                      ElevatedButton(
                        child: const Text('Counter'),
                        onPressed: () {
                          Navigator.push(context, MaterialPageRoute(
                              builder: (context) => CounterDemo())
                          );
                        },
                      ),
                      ElevatedButton(
                        child: const Text('Computed Cells'),
                        onPressed: () {
                          Navigator.push(context, MaterialPageRoute(
                              builder: (context) => SumDemo())
                          );
                        },
                      ),
                      ElevatedButton(
                        child: const Text('Previous Values'),
                        onPressed: () {
                          Navigator.push(context, MaterialPageRoute(
                              builder: (context) => PreviousValueDemo())
                          );
                        },
                      ),
                      ElevatedButton(
                        child: const Text('CellTextField'),
                        onPressed: () {
                          Navigator.push(context, MaterialPageRoute(
                              builder: (context) => CellTextFieldDemo1())
                          );
                        },
                      ),
                      ElevatedButton(
                        child: const Text('CellTextField 2'),
                        onPressed: () {
                          Navigator.push(context, MaterialPageRoute(
                              builder: (context) => CellTextFieldDemo2())
                          );
                        },
                      ),
                      ElevatedButton(
                        child: const Text('Mutable Computed Cells'),
                        onPressed: () {
                          Navigator.push(context, MaterialPageRoute(
                              builder: (context) => MutableComputedCellDemo())
                          );
                        },
                      ),
                      ElevatedButton(
                        child: const Text('Mutable Computed Cells 2'),
                        onPressed: () {
                          Navigator.push(context, MaterialPageRoute(
                              builder: (context) => MutableComputedCellDemo2())
                          );
                        },
                      ),
                      ElevatedButton(
                        child: const Text('Error handling 1'),
                        onPressed: () {
                          Navigator.push(context, MaterialPageRoute(
                              builder: (context) => ErrorHandlingDemo1())
                          );
                        },
                      ),
                      ElevatedButton(
                        child: const Text('Error handling 2'),
                        onPressed: () {
                          Navigator.push(context, MaterialPageRoute(
                              builder: (context) => ErrorHandlingDemo2())
                          );
                        },
                      ),
                      ElevatedButton(
                        child: const Text('Watching Cells 1'),
                        onPressed: () {
                          Navigator.push(context, MaterialPageRoute(
                              builder: (context) => WatchDemo1()
                          ));
                        },
                      ),
                      ElevatedButton(
                        child: const Text('Watching Cells 2'),
                        onPressed: () {
                          Navigator.push(context, MaterialPageRoute(
                              builder: (context) => WatchDemo2()
                          ));
                        },
                      ),
                      ElevatedButton(
                        child: const Text('CellSlider'),
                        onPressed: () {
                          Navigator.push(context, MaterialPageRoute(
                              builder: (context) => CellSliderDemo()
                          ));
                        },
                      ),
                      ElevatedButton(
                        child: const Text('CellCheckbox'),
                        onPressed: () {
                          Navigator.push(context, MaterialPageRoute(
                              builder: (context) => CellCheckboxDemo()
                          ));
                        },
                      ),
                      ElevatedButton(
                        child: const Text('CellSwitch'),
                        onPressed: () {
                          Navigator.push(context, MaterialPageRoute(
                              builder: (context) => CellSwitchDemo()
                          ));
                        },
                      ),
                      ElevatedButton(
                        child: const Text('CellRadio'),
                        onPressed: () {
                          Navigator.push(context, MaterialPageRoute(
                              builder: (context) => CellRadioDemo()
                          ));
                        },
                      ),
                      ElevatedButton(
                        child: const Text('State Restoration'),
                        onPressed: () {
                            Navigator.restorablePush(context, _makeStateRestorationDemo);
                        },
                      ),
                      ElevatedButton(
                        child: const Text('Asynchronous Cells'),
                        onPressed: () {
                          Navigator.push(context, MaterialPageRoute(
                              builder: (context) => AsyncDemo()
                          ));
                        },
                      ),
                      ElevatedButton(
                        child: const Text('Action Cells 1'),
                        onPressed: () {
                          Navigator.push(context, MaterialPageRoute(
                              builder: (context) => ActionCellDemo1()
                          ));
                        },
                      ),
                      ElevatedButton(
                        child: const Text('Action Cells 2'),
                        onPressed: () {
                          Navigator.push(context, MaterialPageRoute(
                              builder: (context) => ActionCellDemo2()
                          ));
                        },
                      ),
                      ElevatedButton(
                        child: const Text('Effect Cells'),
                        onPressed: () {
                          Navigator.push(context, MaterialPageRoute(
                              builder: (context) => EffectCellDemo()
                          ));
                        },
                      ),
                      ElevatedButton(
                        child: const Text('ValueCell Subclass 1'),
                        onPressed: () {
                          Navigator.push(context, MaterialPageRoute(
                              builder: (context) => SubclassDemo1()
                          ));
                        },
                      ),
                      ElevatedButton(
                        child: const Text('ValueCell Subclass 2'),
                        onPressed: () {
                          Navigator.push(context, MaterialPageRoute(
                              builder: (context) => SubclassDemo2()
                          ));
                        },
                      ),
                    ],
                  ),
                ),
              ),
            ),
          ],
        ),
      ),
    );
  }

  @pragma('vm:entry-point')
  static Route _makeStateRestorationDemo(BuildContext context, Object? args) {
    return MaterialPageRoute(builder: (context) => CellRestorationDemo());
  }
}