27 lines
813 B
Dart
27 lines
813 B
Dart
import 'package:aitrainer_app/localization/app_localization.dart';
|
|
import 'package:aitrainer_app/widgets/app_bar_min.dart';
|
|
import 'package:flutter/cupertino.dart';
|
|
import 'package:flutter/material.dart';
|
|
|
|
class Gdpr extends StatelessWidget {
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Scaffold(
|
|
appBar: AppBarMin(
|
|
back: true,
|
|
),
|
|
body: Container(
|
|
padding: const EdgeInsets.only(left: 15, right: 15),
|
|
child: ListView(
|
|
children: <Widget>[
|
|
InkWell(
|
|
child: Text(
|
|
AppLocalizations.of(context).translate('gdpr_text'),
|
|
),
|
|
customBorder: Border.all(color: Colors.orange, width: 1),
|
|
),
|
|
],
|
|
)));
|
|
}
|
|
}
|