replace the "Krow" with "KROW"

This commit is contained in:
Achintha Isuru
2026-02-26 15:13:26 -05:00
parent f9c2d822e6
commit b8d07380c0
60 changed files with 225 additions and 227 deletions

View File

@@ -1,6 +1,6 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<application
android:label="Krow With Us Client"
android:label="KROW With Us Client"
android:name="${applicationName}"
android:icon="@mipmap/launcher_icon">
<activity

View File

@@ -5,7 +5,7 @@
<key>CFBundleDevelopmentRegion</key>
<string>$(DEVELOPMENT_LANGUAGE)</string>
<key>CFBundleDisplayName</key>
<string>Krow With Us Client</string>
<string>KROW With Us Client</string>
<key>CFBundleExecutable</key>
<string>$(EXECUTABLE_NAME)</string>
<key>CFBundleIdentifier</key>
@@ -13,7 +13,7 @@
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>Krow With Us Client</string>
<string>KROW With Us Client</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>

View File

@@ -24,7 +24,7 @@ void main() async {
await Firebase.initializeApp(
options: kIsWeb ? DefaultFirebaseOptions.currentPlatform : null,
);
// Register global BLoC observer for centralized error logging
Bloc.observer = CoreBlocObserver(
logEvents: true,
@@ -33,9 +33,13 @@ void main() async {
// Initialize session listener for Firebase Auth state changes
DataConnectService.instance.initializeAuthListener(
allowedRoles: <String>['CLIENT', 'BUSINESS', 'BOTH'], // Only allow users with CLIENT, BUSINESS, or BOTH roles
allowedRoles: <String>[
'CLIENT',
'BUSINESS',
'BOTH',
], // Only allow users with CLIENT, BUSINESS, or BOTH roles
);
runApp(
ModularApp(
module: AppModule(),
@@ -52,7 +56,10 @@ class AppModule extends Module {
@override
void routes(RouteManager r) {
// Initial route points to the client authentication flow
r.module(ClientPaths.root, module: client_authentication.ClientAuthenticationModule());
r.module(
ClientPaths.root,
module: client_authentication.ClientAuthenticationModule(),
);
// Client main shell with bottom navigation (includes home as a child)
r.module(ClientPaths.main, module: client_main.ClientMainModule());
@@ -95,7 +102,7 @@ class AppWidget extends StatelessWidget {
return core_localization.TranslationProvider(
child: MaterialApp.router(
debugShowCheckedModeBanner: false,
title: "Krow Client",
title: "KROW Client",
theme: UiTheme.light,
routerConfig: Modular.routerConfig,
locale: state.locale,

View File

@@ -1,5 +1,5 @@
name: krowwithus_client
description: "Krow Client Application"
description: "KROW Client Application"
publish_to: "none"
version: 0.0.1-IlianaClientM3
resolution: workspace