|
@@ -28,25 +28,10 @@ class AboutSectionWidget extends StatelessWidget {
|
|
|
Widget _getSectionOptions(BuildContext context) {
|
|
|
return Column(
|
|
|
children: [
|
|
|
- sectionOptionSpacing,
|
|
|
- const AboutMenuItemWidget(
|
|
|
- title: "FAQ",
|
|
|
- url: "https://ente.io/faq",
|
|
|
- ),
|
|
|
- sectionOptionSpacing,
|
|
|
- const AboutMenuItemWidget(
|
|
|
- title: "Terms",
|
|
|
- url: "https://ente.io/terms",
|
|
|
- ),
|
|
|
- sectionOptionSpacing,
|
|
|
- const AboutMenuItemWidget(
|
|
|
- title: "Privacy",
|
|
|
- url: "https://ente.io/privacy",
|
|
|
- ),
|
|
|
sectionOptionSpacing,
|
|
|
MenuItemWidget(
|
|
|
captionedTextWidget: const CaptionedTextWidget(
|
|
|
- title: "Source code",
|
|
|
+ title: "We are open source!",
|
|
|
),
|
|
|
pressedColor: getEnteColorScheme(context).fillFaint,
|
|
|
trailingIcon: Icons.chevron_right_outlined,
|
|
@@ -56,6 +41,16 @@ class AboutSectionWidget extends StatelessWidget {
|
|
|
},
|
|
|
),
|
|
|
sectionOptionSpacing,
|
|
|
+ const AboutMenuItemWidget(
|
|
|
+ title: "Privacy",
|
|
|
+ url: "https://ente.io/privacy",
|
|
|
+ ),
|
|
|
+ sectionOptionSpacing,
|
|
|
+ const AboutMenuItemWidget(
|
|
|
+ title: "Terms",
|
|
|
+ url: "https://ente.io/terms",
|
|
|
+ ),
|
|
|
+ sectionOptionSpacing,
|
|
|
UpdateService.instance.isIndependent()
|
|
|
? Column(
|
|
|
children: [
|