ui_ex 1.0.2 copy "ui_ex: ^1.0.2" to clipboard
ui_ex: ^1.0.2 copied to clipboard

ui_ex is a solution that provides chain programming, which can easily solve the addition and removal of controls.

Features #

ui_ex is a solution that provides chain programming, which can easily solve the addition and removal of controls.

Getting started #

add this line to pubspec.yaml

dev_dependencies:
  ui_ex: ^1.0.2

import package

import 'package:ui_ex/ui_ex.dart';

Usage #

simple example,

import 'package:flutter/material.dart';
import 'package:ui_ex/ui_ex.dart';

void main() => runApp(const MyApp());

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

  @override
  Widget build(BuildContext context) => 'Flutter Demo'.materialApp(
        theme: ThemeData(primarySwatch: Colors.blue),
        home: const MyHomePage(),
      );
}

class MyHomePage extends StatefulWidget {
  const MyHomePage({Key? key}) : super(key: key);

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

class _MyHomePageState extends State<MyHomePage> {
  String get title => "MyHomePage";

  String get mathStr =>
      r'$$\hat f(\xi) = \int_{-\infty}^\infty f(x)e^{- 2\pi i \xi x}\mathrm{d}x$$';

  bool _showLoading = false;
  bool get showLoading => _showLoading;
  set showLoading(bool value) => fresh(() => _showLoading = value);

  @override
  Widget build(BuildContext context) => mathStr.markdown().scaffold(
      appBar: title.text().cupertinoMiddleAppBar(context: context),
      showLoading: showLoading);
}

2
likes
90
pub points
0%
popularity

Publisher

unverified uploader

ui_ex is a solution that provides chain programming, which can easily solve the addition and removal of controls.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter, tuple

More

Packages that depend on ui_ex