first commit
Build / Build for Android (push) Has been cancelled
Build / Build for iOS (push) Has been cancelled

This commit is contained in:
Zakaria
2026-05-18 14:15:38 -04:00
commit 1563409cb1
382 changed files with 45347 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
import 'package:flutter/material.dart';
import '../components/UserSelector/private_user_sign_in.dart';
import 'language_selection_screen.dart';
class UserSelector extends StatelessWidget {
const UserSelector({Key? key}) : super(key: key);
static const routeName = "/login/userSelector";
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
backgroundColor: Colors.transparent,
elevation: 0,
actions: [
IconButton(
onPressed: () => Navigator.of(context)
.pushNamed(LanguageSelectionScreen.routeName),
icon: const Icon(Icons.language),
)
],
),
body: const Center(child: PrivateUserSignIn()),
);
}
}