font_feature.font_feature_alternative.0.dart 1.07 KB
Newer Older
1 2 3 4
// 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.

5
/// Flutter code sample for [FontFeature.FontFeature.alternative].
6 7 8 9 10 11 12
import 'dart:ui';

import 'package:flutter/widgets.dart';

void main() => runApp(const ExampleApp());

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

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

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

  @override
  Widget build(BuildContext context) {
29 30
    // The Raleway font can be downloaded from Google Fonts
    // (https://www.google.com/fonts).
31 32 33 34 35 36 37 38 39 40 41
    return const Text(
      'The infamous Tuna Torture.',
      style: TextStyle(
        fontFamily: 'Raleway',
        fontFeatures: <FontFeature>[
          FontFeature.alternative(1), // or 2, or 3, or...
        ],
      ),
    );
  }
}