83 lines
2.2 KiB
Dart
83 lines
2.2 KiB
Dart
import 'dart:ui';
|
|
|
|
import 'package:aves/flutter_version.dart';
|
|
import 'package:aves/widgets/common/basic/link_chip.dart';
|
|
import 'package:aves/widgets/common/extensions/build_context.dart';
|
|
import 'package:aves/widgets/common/identity/aves_logo.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:package_info_plus/package_info_plus.dart';
|
|
|
|
class AppReference extends StatefulWidget {
|
|
const AppReference({Key? key}) : super(key: key);
|
|
|
|
@override
|
|
_AppReferenceState createState() => _AppReferenceState();
|
|
}
|
|
|
|
class _AppReferenceState extends State<AppReference> {
|
|
late Future<PackageInfo> _packageInfoLoader;
|
|
|
|
@override
|
|
void initState() {
|
|
super.initState();
|
|
_packageInfoLoader = PackageInfo.fromPlatform();
|
|
}
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Center(
|
|
child: Column(
|
|
children: [
|
|
_buildAvesLine(),
|
|
_buildFlutterLine(),
|
|
const SizedBox(height: 16),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
|
|
Widget _buildAvesLine() {
|
|
const style = TextStyle(
|
|
fontSize: 20,
|
|
fontWeight: FontWeight.normal,
|
|
letterSpacing: 1.0,
|
|
fontFeatures: [FontFeature.enable('smcp')],
|
|
);
|
|
|
|
return FutureBuilder<PackageInfo>(
|
|
future: _packageInfoLoader,
|
|
builder: (context, snapshot) {
|
|
return LinkChip(
|
|
leading: AvesLogo(
|
|
size: style.fontSize! * MediaQuery.textScaleFactorOf(context) * 1.25,
|
|
),
|
|
text: '${context.l10n.appName} ${snapshot.data?.version}',
|
|
url: 'https://github.com/deckerst/aves',
|
|
textStyle: style,
|
|
);
|
|
},
|
|
);
|
|
}
|
|
|
|
Widget _buildFlutterLine() {
|
|
final style = DefaultTextStyle.of(context).style;
|
|
final subColor = style.color!.withOpacity(.6);
|
|
|
|
return Text.rich(
|
|
TextSpan(
|
|
children: [
|
|
WidgetSpan(
|
|
child: Padding(
|
|
padding: const EdgeInsetsDirectional.only(end: 4),
|
|
child: FlutterLogo(
|
|
size: style.fontSize! * 1.25,
|
|
),
|
|
),
|
|
),
|
|
TextSpan(text: '${context.l10n.aboutFlutter} ${version['frameworkVersion']}'),
|
|
],
|
|
),
|
|
style: TextStyle(color: subColor),
|
|
);
|
|
}
|
|
}
|