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)) ) ), ), ); } }