about.dart 3.05 KB
Newer Older
Ian Hickson's avatar
Ian Hickson committed
1
// Copyright 2014 The Flutter Authors. All rights reserved.
2 3 4 5
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

import 'package:flutter/foundation.dart' show defaultTargetPlatform;
6
import 'package:flutter/gestures.dart';
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
import 'package:flutter/material.dart';
import 'package:url_launcher/url_launcher.dart';

class _LinkTextSpan extends TextSpan {

  // Beware!
  //
  // This class is only safe because the TapGestureRecognizer is not
  // given a deadline and therefore never allocates any resources.
  //
  // In any other situation -- setting a deadline, using any of the less trivial
  // recognizers, etc -- you would have to manage the gesture recognizer's
  // lifetime and call dispose() when the TextSpan was no longer being rendered.
  //
  // Since TextSpan itself is @immutable, this means that you would have to
  // manage the recognizer from outside the TextSpan, e.g. in the State of a
  // stateful widget that then hands the recognizer to the TextSpan.

25
  _LinkTextSpan({ super.style, required String url, String? text }) : super(
26
    text: text ?? url,
27
    recognizer: TapGestureRecognizer()..onTap = () {
28
      launchUrl(Uri.parse(url), mode: LaunchMode.externalApplication);
29 30 31 32 33 34
    }
  );
}

void showGalleryAboutDialog(BuildContext context) {
  final ThemeData themeData = Theme.of(context);
35 36
  final TextStyle? aboutTextStyle = themeData.textTheme.bodyLarge;
  final TextStyle linkStyle = themeData.textTheme.bodyLarge!.copyWith(color: themeData.colorScheme.primary);
37 38 39

  showAboutDialog(
    context: context,
40
    applicationVersion: 'January 2019',
41
    applicationIcon: const FlutterLogo(),
Ian Hickson's avatar
Ian Hickson committed
42
    applicationLegalese: '© 2014 The Flutter Authors',
43
    children: <Widget>[
44
      Padding(
45
        padding: const EdgeInsets.only(top: 24.0),
46 47
        child: RichText(
          text: TextSpan(
48
            children: <TextSpan>[
49
              TextSpan(
50
                style: aboutTextStyle,
51
                text: 'Flutter is an open-source project to help developers '
52 53
                      'build high-performance, high-fidelity, mobile apps for '
                      '${defaultTargetPlatform == TargetPlatform.iOS ? 'multiple platforms' : 'iOS and Android'} '
54 55
                      'from a single codebase. This design lab is a playground '
                      "and showcase of Flutter's many widgets, behaviors, "
56
                      'animations, layouts, and more. Learn more about Flutter at ',
57
              ),
58
              _LinkTextSpan(
59
                style: linkStyle,
60
                url: 'https://flutter.dev',
61
              ),
62
              TextSpan(
63 64 65
                style: aboutTextStyle,
                text: '.\n\nTo see the source code for this app, please visit the ',
              ),
66
              _LinkTextSpan(
67 68 69 70
                style: linkStyle,
                url: 'https://goo.gl/iv1p4G',
                text: 'flutter github repo',
              ),
71
              TextSpan(
72 73 74 75 76 77 78 79 80 81
                style: aboutTextStyle,
                text: '.',
              ),
            ],
          ),
        ),
      ),
    ],
  );
}