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.
33 lines
928 B
33 lines
928 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), |
|
bottom: PreferredSize( |
|
child: Container(color: const Color(0x40ADB0BB), height: 1.0), |
|
preferredSize: Size.fromHeight(1.0) |
|
), |
|
), |
|
body: SafeArea( |
|
child: Padding( |
|
padding: const EdgeInsets.symmetric(vertical: 10.0), |
|
child: Center( |
|
child: Text(lang.wip, style: TextStyle(fontSize: 32.0)) |
|
) |
|
), |
|
), |
|
); |
|
} |
|
}
|
|
|