Encrypted peer-to-peer IM for data security. Own data, own privacy. (Rust+Flutter)
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

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