mirror of
https://github.com/SyncrowIOT/syncrow-app.git
synced 2025-07-20 20:15:15 +00:00
76 lines
2.5 KiB
Dart
76 lines
2.5 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:syncrow_app/features/shared_widgets/default_container.dart';
|
|
import 'package:syncrow_app/features/shared_widgets/default_scaffold.dart';
|
|
import 'package:syncrow_app/features/shared_widgets/text_widgets/body_medium.dart';
|
|
import 'package:syncrow_app/utils/resource_manager/color_manager.dart';
|
|
|
|
class PrivacyView extends StatelessWidget {
|
|
const PrivacyView({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return DefaultScaffold(
|
|
title: 'Privacy',
|
|
child: Column(
|
|
children: [
|
|
DefaultContainer(
|
|
padding: const EdgeInsets.symmetric(
|
|
horizontal: 25,
|
|
vertical: 20,
|
|
),
|
|
child: Column(
|
|
mainAxisSize: MainAxisSize.min,
|
|
mainAxisAlignment: MainAxisAlignment.start,
|
|
children: [
|
|
InkWell(
|
|
onTap: () {},
|
|
child: Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
mainAxisSize: MainAxisSize.min,
|
|
children: [
|
|
const Row(
|
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
|
children: [
|
|
BodyMedium(
|
|
text: 'Notification Settings',
|
|
),
|
|
Icon(
|
|
Icons.arrow_forward_ios,
|
|
color: ColorsManager.greyColor,
|
|
size: 15,
|
|
)
|
|
],
|
|
),
|
|
Container(
|
|
margin: const EdgeInsets.symmetric(vertical: 15),
|
|
height: 1,
|
|
color: ColorsManager.greyColor,
|
|
),
|
|
],
|
|
),
|
|
),
|
|
InkWell(
|
|
onTap: () {},
|
|
child: const Row(
|
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
|
children: [
|
|
BodyMedium(
|
|
text: 'Permissions Settings',
|
|
),
|
|
Icon(
|
|
Icons.arrow_forward_ios,
|
|
color: ColorsManager.greyColor,
|
|
size: 15,
|
|
)
|
|
],
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
}
|