uix 0.2.0 copy "uix: ^0.2.0" to clipboard
uix: ^0.2.0 copied to clipboard

outdated

Library to build Web User Interfaces.

uix #

Library to build Web User Interfaces in Dart inspired by React.

Quick Start #

Requirements:

  • Dart SDK 1.9 or greater

1. Create a new Dart Web Project

2. Add uix library in pubspec.yaml file:

dependencies:
  uix: any

3. Install dependencies

$ pub get

4. Add build.dart file:

library build_file;

import 'package:source_gen/source_gen.dart';
import 'package:uix/generator.dart';

void main(List<String> args) {
  build(args, const [
    const ShallowEqGenerator(),
    const ComponentGenerator()
  ], librarySearchPaths: ['web']).then((msg) {
    print(msg);
  });
}

Dart Editor will automatically run build.dart file. To configure auto-build in WebStorm, just add File Watcher.

Examples #

DBMonster Benchmark #

Run

0
likes
0
pub points
0%
popularity

Publisher

unverified uploader

Library to build Web User Interfaces.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

collection, source_gen

More

Packages that depend on uix