mirror of
https://gitlab.com/nkming2/nc-photos.git
synced 2025-01-23 17:26:18 +01:00
24 lines
780 B
Dart
24 lines
780 B
Dart
part of '../changelog.dart';
|
|
|
|
class _Changelog580 extends StatelessWidget {
|
|
const _Changelog580();
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Column(
|
|
mainAxisSize: MainAxisSize.min,
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
_subSection("Changes"),
|
|
_bulletGroup(const Text(
|
|
"Themed icon on Android 13+ (contributed by fischer-felix)")),
|
|
_bulletGroup(const Text("Various bugfixes and UI improvements")),
|
|
_sectionPadding(),
|
|
_subSection("Localization"),
|
|
_bulletGroup(const Text("Updated Czech (by Fjuro)")),
|
|
_bulletGroup(const Text("Updated Portuguese (by fernosan)")),
|
|
_bulletGroup(const Text("Updated Spanish (by luckkmaxx)")),
|
|
],
|
|
);
|
|
}
|
|
}
|