mirror of
https://github.com/flutter/flutter.git
synced 2026-02-11 05:17:36 +08:00
I've also removed the top-level description of the Sky package. Instead, we should host that content on flutter.io.
16 lines
536 B
Dart
16 lines
536 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';
|