Skip to content

Commit 608794b

Browse files
committed
V1.2.0
1 parent b394a07 commit 608794b

File tree

10 files changed

+16
-16
lines changed

10 files changed

+16
-16
lines changed

android/app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ android {
3434

3535
defaultConfig {
3636
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
37-
applicationId "com.example.qrcode_generator"
37+
applicationId "com.example.qrgen"
3838
minSdkVersion 16
3939
targetSdkVersion 30
4040
versionCode flutterVersionCode.toInteger()

android/app/src/debug/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2-
package="com.example.qrcode_generator">
2+
package="com.example.qrgen">
33
<!-- Flutter needs it to communicate with the running application
44
to allow setting breakpoints, to provide hot reload, etc.
55
-->

android/app/src/main/AndroidManifest.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2-
package="com.example.qrcode_generator">
2+
package="com.example.qrgen">
33
<application
4-
android:label="qrcode_generator"
4+
android:label="qrgen"
55
android:icon="@mipmap/ic_launcher">
66
<activity
77
android:name=".MainActivity"

android/app/src/main/kotlin/com/example/qrcode_generator/MainActivity.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.example.qrcode_generator
1+
package com.example.qrgen
22

33
import io.flutter.embedding.android.FlutterActivity
44

android/app/src/profile/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2-
package="com.example.qrcode_generator">
2+
package="com.example.qrgen">
33
<!-- Flutter needs it to communicate with the running application
44
to allow setting breakpoints, to provide hot reload, etc.
55
-->

ios/Runner/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<key>CFBundleInfoDictionaryVersion</key>
1212
<string>6.0</string>
1313
<key>CFBundleName</key>
14-
<string>qrcode_generator</string>
14+
<string>qrgen</string>
1515
<key>CFBundlePackageType</key>
1616
<string>APPL</string>
1717
<key>CFBundleShortVersionString</key>

lib/main.dart

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ class _MyHomePageState extends State<MyHomePage> {
5151
toolbarHeight: 80,
5252
title: Center(
5353
child: Text(
54-
'Qr Code Generator',
54+
'QrCode Generator',
5555
style: TextStyle(
5656
fontSize: 24,
5757
color: Colors.black,
@@ -62,7 +62,7 @@ class _MyHomePageState extends State<MyHomePage> {
6262
body: SafeArea(
6363
child: Center(
6464
child: Container(
65-
width: 260,
65+
width: 300,
6666
child: Column(
6767
mainAxisAlignment: MainAxisAlignment.center,
6868
children: [
@@ -74,14 +74,14 @@ class _MyHomePageState extends State<MyHomePage> {
7474
child: QrImage(
7575
data: generatedata,
7676
version: QrVersions.auto,
77-
size: 240.0,
77+
size: 200.0,
7878
),
7979
),
8080
Padding(
8181
padding: const EdgeInsets.fromLTRB(0, 16, 0, 0),
8282
child: TextField(
83-
autofocus: true,
8483
controller: convertText,
84+
autofocus: true,
8585
textAlign: TextAlign.center,
8686
decoration: InputDecoration(
8787
border: OutlineInputBorder(),

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: qrgen
2-
description: A new Flutter project.
2+
description: A easy to use QR Scanner with no trackers and spyware.
33

44
# The following line prevents the package from being accidentally published to
55
# pub.dev using `pub publish`. This is preferred for private packages.

web/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,13 @@
2020
<!-- iOS meta tags & icons -->
2121
<meta name="apple-mobile-web-app-capable" content="yes">
2222
<meta name="apple-mobile-web-app-status-bar-style" content="black">
23-
<meta name="apple-mobile-web-app-title" content="qrcode_generator">
23+
<meta name="apple-mobile-web-app-title" content="qrgen">
2424
<link rel="apple-touch-icon" href="icons/Icon-192.png">
2525

2626
<!-- Favicon -->
2727
<link rel="icon" type="image/png" href="favicon.png"/>
2828

29-
<title>qrcode_generator</title>
29+
<title>qrgen</title>
3030
<link rel="manifest" href="manifest.json">
3131
</head>
3232
<body>

web/manifest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"name": "qrcode_generator",
3-
"short_name": "qrcode_generator",
2+
"name": "qrgen",
3+
"short_name": "qrgen",
44
"start_url": ".",
55
"display": "standalone",
66
"background_color": "#0175C2",

0 commit comments

Comments
 (0)