Rename to BrandManager

This commit is contained in:
2026-01-25 16:04:12 +01:00
parent 99aebb2c5f
commit 4c78216c6f
8 changed files with 10 additions and 27 deletions

View File

@@ -4,18 +4,18 @@ import 'services/authentication_manager.dart';
import 'views/content_view.dart';
void main() {
runApp(const BmManagerApp());
runApp(const BrandManagerApp());
}
class BmManagerApp extends StatelessWidget {
const BmManagerApp({super.key});
class BrandManagerApp extends StatelessWidget {
const BrandManagerApp({super.key});
@override
Widget build(BuildContext context) {
return ChangeNotifierProvider(
create: (_) => AuthenticationManager(),
child: MaterialApp(
title: 'BM Manager',
title: 'BrandManager',
debugShowCheckedModeBanner: false,
theme: ThemeData(
colorScheme: ColorScheme.fromSeed(

View File

@@ -75,11 +75,6 @@ class InfoView extends StatelessWidget {
),
),
const SizedBox(height: 16),
const _InfoRow(
icon: Icons.info,
label: 'App Name',
value: 'BM Manager',
),
const _InfoRow(
icon: Icons.analytics,
label: 'Version',

View File

@@ -79,11 +79,6 @@ class MoreView extends StatelessWidget {
),
),
const SizedBox(height: 16),
const _InfoRow(
icon: Icons.info,
label: 'App Name',
value: 'BM Manager',
),
const _InfoRow(
icon: Icons.analytics,
label: 'Version',

View File

@@ -16,13 +16,6 @@ class WelcomeView extends StatelessWidget {
color: Theme.of(context).colorScheme.primary,
),
const SizedBox(height: 24),
Text(
'BM Manager',
style: Theme.of(context).textTheme.headlineLarge?.copyWith(
fontWeight: FontWeight.bold,
),
),
const SizedBox(height: 8),
Text(
'Manage your BrandMeister devices',
style: Theme.of(context).textTheme.bodyMedium?.copyWith(