Skip to content

Commit

Permalink
app name
Browse files Browse the repository at this point in the history
  • Loading branch information
KOSSHOH committed Jan 21, 2021
1 parent cba6462 commit 510538c
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# messenger
# Zgram

A new Flutter application.

Expand Down
2 changes: 1 addition & 1 deletion android/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
FlutterApplication and put your custom class here. -->
<application
android:name="io.flutter.app.FlutterApplication"
android:label="messenger"
android:label="Zgram"
android:icon="@mipmap/ic_launcher">
<activity
android:name=".MainActivity"
Expand Down
2 changes: 1 addition & 1 deletion ios/Runner/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>messenger</string>
<string>Zgram</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
Expand Down
5 changes: 3 additions & 2 deletions lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
import 'package:messenger/src/app_theme.dart';
import 'package:messenger/src/ui/menu/main_screen.dart';
import 'package:messenger/src/ui/onboarding.dart';
void main() async {
WidgetsFlutterBinding.ensureInitialized();
await SystemChrome.setPreferredOrientations(
Expand Down Expand Up @@ -33,14 +34,14 @@ class MyApp extends StatelessWidget {

return MaterialApp(
debugShowCheckedModeBanner: false,
title: 'Messenger',
title: 'Zgram',
theme: ThemeData(
accentColor: Color(0xFF327FEB),
canvasColor: Colors.transparent,
textTheme: AppTheme.textTheme,
platform: TargetPlatform.iOS,
),
home: MainScreen(),
home: OnBoarding(),
);
}
}

0 comments on commit 510538c

Please sign in to comment.