1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2025-12-14 07:05:42 +00:00

Ready to implement security settings

This commit is contained in:
2020-04-29 17:28:47 +02:00
parent ae9491e198
commit d64d2ece05
2 changed files with 27 additions and 1 deletions

View File

@@ -0,0 +1,17 @@
import 'package:comunic/utils/intl_utils.dart';
import 'package:flutter/material.dart';
/// Account security settings
///
/// @author Pierre HUBERT
class AccountSecuritySettingsScreen extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text(tr("Security settings")),
),
);
}
}