mirror of
https://github.com/h7x4/Jisho-Study-Tool.git
synced 2024-12-22 05:57:28 +01:00
h7x4
76f8cc6c86
* Add info sections to application * Update README * Make screenshots bigger * A little less big * Fix heading sizes
28 lines
789 B
Dart
28 lines
789 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
import '../../settings.dart';
|
|
|
|
class LicensesView extends StatelessWidget {
|
|
const LicensesView({Key? key}) : super(key: key);
|
|
|
|
@override
|
|
Widget build(BuildContext context) => LicensePage(
|
|
applicationName: 'Jisho Study Tool',
|
|
applicationVersion: 'Version: $appVersion',
|
|
applicationIcon: Padding(
|
|
padding: const EdgeInsets.symmetric(vertical: 30),
|
|
child: Row(
|
|
children: [
|
|
const Expanded(child: SizedBox()),
|
|
Expanded(
|
|
child: Image.asset(
|
|
'assets/images/logo/logo_icon_transparent_green.png',
|
|
),
|
|
),
|
|
const Expanded(child: SizedBox()),
|
|
],
|
|
),
|
|
),
|
|
);
|
|
}
|