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.
27 lines
757 B
27 lines
757 B
import 'package:flutter/material.dart'; |
|
|
|
//import 'package:esse/utils/adaptive.dart'; |
|
import 'package:esse/l10n/localizations.dart'; |
|
|
|
class ServiceAddPage extends StatelessWidget { |
|
const ServiceAddPage({Key? key}) : super(key: key); |
|
|
|
@override |
|
Widget build(BuildContext context) { |
|
//final isDesktop = isDisplayDesktop(context); |
|
//final color = Theme.of(context).colorScheme; |
|
final lang = AppLocalizations.of(context); |
|
|
|
return Scaffold( |
|
appBar: AppBar(title: Text(lang.addService)), |
|
body: SafeArea( |
|
child: Padding( |
|
padding: const EdgeInsets.symmetric(vertical: 10.0), |
|
child: Center( |
|
child: Text(lang.wip, style: TextStyle(fontSize: 32.0)) |
|
) |
|
), |
|
), |
|
); |
|
} |
|
}
|
|
|