Rename to BrandManager
This commit is contained in:
@@ -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(
|
||||
|
||||
@@ -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',
|
||||
|
||||
@@ -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',
|
||||
|
||||
@@ -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(
|
||||
|
||||
Reference in New Issue
Block a user