mirror of https://github.com/CympleTech/ESSE.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
948 B
42 lines
948 B
import 'package:flutter/material.dart'; |
|
|
|
import 'package:esse/l10n/localizations.dart'; |
|
|
|
class CloudPage extends StatefulWidget { |
|
const CloudPage({Key? key}) : super(key: key); |
|
|
|
@override |
|
_CloudPageState createState() => _CloudPageState(); |
|
} |
|
|
|
class _CloudPageState extends State<CloudPage> { |
|
@override |
|
void initState() { |
|
super.initState(); |
|
} |
|
|
|
@override |
|
Widget build(BuildContext context) { |
|
final color = Theme.of(context).colorScheme; |
|
final lang = AppLocalizations.of(context); |
|
|
|
return Scaffold( |
|
appBar: AppBar( |
|
title: Text(lang.cloud), |
|
actions: [ |
|
Padding( |
|
padding: const EdgeInsets.symmetric(horizontal: 20.0), |
|
child: IconButton( |
|
icon: Icon(Icons.add), |
|
onPressed: () {}, |
|
), |
|
) |
|
] |
|
), |
|
body: Container( |
|
alignment: Alignment.topCenter, |
|
child: Text(lang.wip) |
|
) |
|
); |
|
} |
|
}
|
|
|