nc-photos/app/lib/widget/changelog/changelog_680.dart
Ming Ming 450fa97b48 68.0
2024-09-04 00:54:54 +08:00

21 lines
620 B
Dart

part of '../changelog.dart';
class _Changelog680 extends StatelessWidget {
const _Changelog680();
@override
Widget build(BuildContext context) {
return Column(
mainAxisSize: MainAxisSize.min,
crossAxisAlignment: CrossAxisAlignment.start,
children: [
_subSection("Changes"),
_bulletGroup(const Text(
"Fixed some collections not showing up when you are offline")),
_bulletGroup(
const Text("Fixed photos not showing up in a shared album")),
_bulletGroup(const Text("Can now tweak the default time range in Map")),
],
);
}
}