uix 0.0.1+1 copy "uix: ^0.0.1+1" to clipboard
uix: ^0.0.1+1 copied to clipboard

outdated

Library to build User Interfaces

uix #

Library to build User Interfaces in Dart.

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 UixGenerator()
  ], librarySearchPaths: ['web']).then((msg) {
    print(msg);
  });
}

Examples #

0
likes
0
pub points
0%
popularity

Publisher

unverified uploader

Library to build User Interfaces

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

collection, source_gen

More

Packages that depend on uix