nc-photos/app/lib/widget/changelog/changelog_580.dart
2023-05-22 00:49:27 +08:00

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)")),
],
);
}
}