Added select server screen and add server screen

This commit is contained in:
Juan Gilsanz Polo 2022-09-26 16:08:56 +02:00
parent e1ff7a151d
commit a97ae20631
22 changed files with 623 additions and 27 deletions

View file

@ -0,0 +1,16 @@
import 'package:flutter/material.dart';
import 'package:flutter_gen/gen_l10n/app_localizations.dart';
class SettingsAppBar extends StatelessWidget with PreferredSizeWidget {
const SettingsAppBar({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return AppBar(
title: Text(AppLocalizations.of(context)!.settings),
);
}
@override
Size get preferredSize => const Size.fromHeight(kToolbarHeight);
}