font_feature.font_feature_locale_aware.0.dart 1.05 KB
Newer Older
1 2 3 4 5 6
// Copyright 2014 The Flutter Authors. 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/widgets.dart';

7 8
/// Flutter code sample for [FontFeature.FontFeature.localeAware].

9 10 11
void main() => runApp(const ExampleApp());

class ExampleApp extends StatelessWidget {
12
  const ExampleApp({super.key});
13 14 15 16 17 18 19 20 21 22 23

  @override
  Widget build(BuildContext context) {
    return WidgetsApp(
      builder: (BuildContext context, Widget? navigator) => const ExampleWidget(),
      color: const Color(0xffffffff),
    );
  }
}

class ExampleWidget extends StatelessWidget {
24
  const ExampleWidget({super.key});
25 26 27

  @override
  Widget build(BuildContext context) {
28 29
    // The Noto family of fonts can be downloaded from Google Fonts
    // (https://www.google.com/fonts).
30 31 32 33 34 35 36 37 38
    return const Text(
      '次 化 刃 直 入 令',
      locale: Locale('zh', 'CN'), // or Locale('ja'), Locale('ko'), Locale('zh', 'TW'), etc
      style: TextStyle(
        fontFamily: 'Noto Sans',
      ),
    );
  }
}