mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
16 lines
537 B
Dart
16 lines
537 B
Dart
// Copyright 2015 The Chromium Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
/// Flutter widgets implementing Material Design.
|
|
///
|
|
/// See https://www.google.com/design/spec/material-design/introduction.html
|
|
library material;
|
|
|
|
export 'src/material/colors.dart';
|
|
export 'src/material/edges.dart';
|
|
export 'src/material/shadows.dart';
|
|
export 'src/material/theme_data.dart';
|
|
export 'src/material/typography.dart';
|
|
export 'src/material/constants.dart';
|