Update AndroidManifest, notification icons, and main.dart

This commit is contained in:
toki 2026-03-22 22:28:39 +09:00
parent 7953563443
commit 9b8946be49
7 changed files with 4 additions and 4 deletions

View file

@ -6,7 +6,7 @@
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/>
<application
android:label="nomadcode"
android:label="NomadCode"
android:name=".MainApplication"
android:icon="@mipmap/ic_launcher"
android:roundIcon="@mipmap/ic_launcher_round">

Binary file not shown.

Before

Width:  |  Height:  |  Size: 638 B

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 481 B

After

Width:  |  Height:  |  Size: 958 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 847 B

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 KiB

After

Width:  |  Height:  |  Size: 2.1 KiB

View file

@ -35,12 +35,12 @@ class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Mattermost',
title: 'NomadCode',
navigatorKey: _navigatorKey,
theme: ThemeData(
colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
),
home: const MyHomePage(title: 'Mattermost'),
home: const MyHomePage(title: 'NomadCode'),
builder: (context, child) {
_pushService.onNavigateToChannel = (serverUrl, channelId) {
print('[Nav] Navigate to channel: $channelId on $serverUrl');
@ -102,7 +102,7 @@ class _MyHomePageState extends State<MyHomePage> {
title: Text(widget.title),
),
body: const Center(
child: Text('Mattermost Flutter'),
child: Text('NomadCode'),
),
);
}