mirror of
https://github.com/flutter/samples.git
synced 2025-11-10 23:08:59 +00:00
Add provider_shopper (#87)
This is the code for the sample at https://flutter.dev/docs/development/data-and-backend/state-mgmt/simple.
This commit is contained in:
17
provider_shopper/lib/common/theme.dart
Normal file
17
provider_shopper/lib/common/theme.dart
Normal file
@@ -0,0 +1,17 @@
|
||||
// Copyright 2019 The Flutter team. All rights reserved.
|
||||
// Use of this source code is governed by a BSD-style license that can be
|
||||
// found in the LICENSE file.
|
||||
|
||||
import 'package:flutter/material.dart';
|
||||
|
||||
final appTheme = ThemeData(
|
||||
primarySwatch: Colors.yellow,
|
||||
textTheme: TextTheme(
|
||||
display4: TextStyle(
|
||||
fontFamily: 'Corben',
|
||||
fontWeight: FontWeight.w700,
|
||||
fontSize: 24,
|
||||
color: Colors.black,
|
||||
),
|
||||
),
|
||||
);
|
||||
Reference in New Issue
Block a user