nc-photos/app/lib/widget/changelog/changelog_610.dart
2023-08-05 17:03:39 +08:00

25 lines
699 B
Dart

part of '../changelog.dart';
class _Changelog610 extends StatelessWidget {
const _Changelog610();
@override
Widget build(BuildContext context) {
return Column(
mainAxisSize: MainAxisSize.min,
crossAxisAlignment: CrossAxisAlignment.start,
children: [
_subSection("Changes"),
_bulletGroup(
const Text(
"Added \"Set as\" in viewer to set the current opened photo as phone wallpaper"),
),
_bulletGroup(
const Text(
"(Recognize) Fixed a bug where changes to faces are not synced correctly"),
),
_bulletGroup(const Text("Various UI tweaks and bug fixes")),
],
);
}
}