flutter/examples/fn/widgets/widgets.dart
Rafael Weinstein 202f99d71d Initial commit of Effen reactive framework experiment for Sky
This is just a proof of concept. If we like this direction, it will move out of the examples directory (likely re-written) and be committed in smaller pieces with unit tests and formal reviews.

TBR=abarth
BUG=

Review URL: https://codereview.chromium.org/971183002
2015-03-02 20:55:02 -08:00

25 lines
502 B
Dart

library widgets;
import '../lib/fn.dart';
import 'dart:async';
import 'dart:math' as math;
import 'dart:sky' as sky;
part 'animationgenerator.dart';
part 'box.dart';
part 'button.dart';
part 'buttonbase.dart';
part 'checkbox.dart';
part 'drawer.dart';
part 'drawerheader.dart';
part 'fixedheightscrollable.dart';
part 'flingcurve.dart';
part 'icon.dart';
part 'inksplash.dart';
part 'menudivider.dart';
part 'menuitem.dart';
part 'radio.dart';
part 'toolbar.dart';
typedef void ValueChanged(value);