font_feature.font_feature_character_variant.0.dart 1.16 KB
Newer Older
1 2 3 4 5 6 7 8
// 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 'dart:ui';

import 'package:flutter/widgets.dart';

9 10
/// Flutter code sample for [FontFeature.FontFeature.characterVariant].

11 12 13
void main() => runApp(const ExampleApp());

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

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

class ExampleWidget extends StatelessWidget {
26
  const ExampleWidget({super.key});
27 28 29

  @override
  Widget build(BuildContext context) {
30 31
    // The Source Code Pro font can be downloaded from Google Fonts
    // (https://www.google.com/fonts).
32 33 34 35 36 37 38 39 40 41 42 43 44
    return Text(
      'aáâ β gǵĝ θб Iiíî Ll',
      style: TextStyle(
        fontFamily: 'Source Code Pro',
        fontFeatures: <FontFeature>[
          FontFeature.characterVariant(1),
          FontFeature.characterVariant(2),
          FontFeature.characterVariant(4),
        ],
      ),
    );
  }
}