Rename to BrandManager
This commit is contained in:
@@ -1,4 +1,4 @@
|
|||||||
# BM Manager
|
# BrandManager
|
||||||
|
|
||||||
A Flutter application for managing DMR devices and talkgroups through the BrandMeister network API, based on the PyroMeister Manager iOS app.
|
A Flutter application for managing DMR devices and talkgroups through the BrandMeister network API, based on the PyroMeister Manager iOS app.
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
<uses-permission android:name="android.permission.INTERNET"/>
|
<uses-permission android:name="android.permission.INTERNET"/>
|
||||||
<application
|
<application
|
||||||
android:label="bmmanager"
|
android:label="BrandManager"
|
||||||
android:name="${applicationName}"
|
android:name="${applicationName}"
|
||||||
android:icon="@mipmap/ic_launcher">
|
android:icon="@mipmap/ic_launcher">
|
||||||
<activity
|
<activity
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
<key>CFBundleDevelopmentRegion</key>
|
<key>CFBundleDevelopmentRegion</key>
|
||||||
<string>$(DEVELOPMENT_LANGUAGE)</string>
|
<string>$(DEVELOPMENT_LANGUAGE)</string>
|
||||||
<key>CFBundleDisplayName</key>
|
<key>CFBundleDisplayName</key>
|
||||||
<string>Bmmanager</string>
|
<string>BrandManager</string>
|
||||||
<key>CFBundleExecutable</key>
|
<key>CFBundleExecutable</key>
|
||||||
<string>$(EXECUTABLE_NAME)</string>
|
<string>$(EXECUTABLE_NAME)</string>
|
||||||
<key>CFBundleIdentifier</key>
|
<key>CFBundleIdentifier</key>
|
||||||
@@ -13,7 +13,7 @@
|
|||||||
<key>CFBundleInfoDictionaryVersion</key>
|
<key>CFBundleInfoDictionaryVersion</key>
|
||||||
<string>6.0</string>
|
<string>6.0</string>
|
||||||
<key>CFBundleName</key>
|
<key>CFBundleName</key>
|
||||||
<string>bmmanager</string>
|
<string>BrandManager</string>
|
||||||
<key>CFBundlePackageType</key>
|
<key>CFBundlePackageType</key>
|
||||||
<string>APPL</string>
|
<string>APPL</string>
|
||||||
<key>CFBundleShortVersionString</key>
|
<key>CFBundleShortVersionString</key>
|
||||||
|
|||||||
@@ -4,18 +4,18 @@ import 'services/authentication_manager.dart';
|
|||||||
import 'views/content_view.dart';
|
import 'views/content_view.dart';
|
||||||
|
|
||||||
void main() {
|
void main() {
|
||||||
runApp(const BmManagerApp());
|
runApp(const BrandManagerApp());
|
||||||
}
|
}
|
||||||
|
|
||||||
class BmManagerApp extends StatelessWidget {
|
class BrandManagerApp extends StatelessWidget {
|
||||||
const BmManagerApp({super.key});
|
const BrandManagerApp({super.key});
|
||||||
|
|
||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
return ChangeNotifierProvider(
|
return ChangeNotifierProvider(
|
||||||
create: (_) => AuthenticationManager(),
|
create: (_) => AuthenticationManager(),
|
||||||
child: MaterialApp(
|
child: MaterialApp(
|
||||||
title: 'BM Manager',
|
title: 'BrandManager',
|
||||||
debugShowCheckedModeBanner: false,
|
debugShowCheckedModeBanner: false,
|
||||||
theme: ThemeData(
|
theme: ThemeData(
|
||||||
colorScheme: ColorScheme.fromSeed(
|
colorScheme: ColorScheme.fromSeed(
|
||||||
|
|||||||
@@ -75,11 +75,6 @@ class InfoView extends StatelessWidget {
|
|||||||
),
|
),
|
||||||
),
|
),
|
||||||
const SizedBox(height: 16),
|
const SizedBox(height: 16),
|
||||||
const _InfoRow(
|
|
||||||
icon: Icons.info,
|
|
||||||
label: 'App Name',
|
|
||||||
value: 'BM Manager',
|
|
||||||
),
|
|
||||||
const _InfoRow(
|
const _InfoRow(
|
||||||
icon: Icons.analytics,
|
icon: Icons.analytics,
|
||||||
label: 'Version',
|
label: 'Version',
|
||||||
|
|||||||
@@ -79,11 +79,6 @@ class MoreView extends StatelessWidget {
|
|||||||
),
|
),
|
||||||
),
|
),
|
||||||
const SizedBox(height: 16),
|
const SizedBox(height: 16),
|
||||||
const _InfoRow(
|
|
||||||
icon: Icons.info,
|
|
||||||
label: 'App Name',
|
|
||||||
value: 'BM Manager',
|
|
||||||
),
|
|
||||||
const _InfoRow(
|
const _InfoRow(
|
||||||
icon: Icons.analytics,
|
icon: Icons.analytics,
|
||||||
label: 'Version',
|
label: 'Version',
|
||||||
|
|||||||
@@ -16,13 +16,6 @@ class WelcomeView extends StatelessWidget {
|
|||||||
color: Theme.of(context).colorScheme.primary,
|
color: Theme.of(context).colorScheme.primary,
|
||||||
),
|
),
|
||||||
const SizedBox(height: 24),
|
const SizedBox(height: 24),
|
||||||
Text(
|
|
||||||
'BM Manager',
|
|
||||||
style: Theme.of(context).textTheme.headlineLarge?.copyWith(
|
|
||||||
fontWeight: FontWeight.bold,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
const SizedBox(height: 8),
|
|
||||||
Text(
|
Text(
|
||||||
'Manage your BrandMeister devices',
|
'Manage your BrandMeister devices',
|
||||||
style: Theme.of(context).textTheme.bodyMedium?.copyWith(
|
style: Theme.of(context).textTheme.bodyMedium?.copyWith(
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
name: bmmanager
|
name: brandmanager
|
||||||
description: "A new Flutter project."
|
description: "Manage your Brandmeister network devices."
|
||||||
# The following line prevents the package from being accidentally published to
|
# The following line prevents the package from being accidentally published to
|
||||||
# pub.dev using `flutter pub publish`. This is preferred for private packages.
|
# pub.dev using `flutter pub publish`. This is preferred for private packages.
|
||||||
publish_to: 'none' # Remove this line if you wish to publish to pub.dev
|
publish_to: 'none' # Remove this line if you wish to publish to pub.dev
|
||||||
|
|||||||
Reference in New Issue
Block a user