mirror of
https://github.com/flutter/flutter.git
synced 2025-06-03 00:51:18 +00:00

- Removed out-of-date README.md - Moved fling-curve into the animation directory because it's part of the animation behavior of the system. - Moved view-configuration into the theme directory because it's a collection of constants similar in flavor to the colors and the shadows. Eventually we'll want to make the theme configurable and have these all together will hopefully make that easier. - Moved dom-serializer into tests/resources because it is used only by tests. R=eseidel@chromium.org Review URL: https://codereview.chromium.org/980423002
31 lines
764 B
Dart
31 lines
764 B
Dart
library widgets;
|
|
|
|
import '../lib/fn.dart';
|
|
import '../../../framework/animation/curves.dart';
|
|
import '../../../framework/animation/fling-curve.dart';
|
|
import '../../../framework/theme/colors.dart';
|
|
import '../../../framework/theme/shadows.dart';
|
|
import 'dart:collection';
|
|
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 'icon.dart';
|
|
part 'inksplash.dart';
|
|
part 'material.dart';
|
|
part 'menudivider.dart';
|
|
part 'menuitem.dart';
|
|
part 'radio.dart';
|
|
part 'toolbar.dart';
|
|
part 'floating_action_button.dart';
|
|
|
|
typedef void ValueChanged(value);
|