Skip to content

Commit aab533d

Browse files
thamaraiselvamthamaraiselvam
authored andcommitted
App name changed to numbers
Score summary added Timer added
1 parent a1e0a45 commit aab533d

File tree

14 files changed

+245
-62
lines changed

14 files changed

+245
-62
lines changed

.vscode/launch.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,11 @@
44
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
55
"version": "0.2.0",
66
"configurations": [
7+
78
{
89
"name": "Flutter",
910
"request": "launch",
1011
"type": "dart"
1112
}
1213
]
13-
}
14+
}

android/app/build.gradle

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

3434
defaultConfig {
3535
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
36-
applicationId "com.example.add_numbers"
36+
applicationId "com.example.numbers"
3737
minSdkVersion 16
3838
targetSdkVersion 28
3939
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.add_numbers">
2+
package="com.example.numbers">
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,5 +1,5 @@
11
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2-
package="com.example.add_numbers">
2+
package="com.example.numbers">
33

44
<!-- io.flutter.app.FlutterApplication is an android.app.Application that
55
calls FlutterMain.startInitialization(this); in its onCreate method.
@@ -8,7 +8,7 @@
88
FlutterApplication and put your custom class here. -->
99
<application
1010
android:name="io.flutter.app.FlutterApplication"
11-
android:label="add_numbers"
11+
android:label="numbers"
1212
android:icon="@mipmap/ic_launcher">
1313
<activity
1414
android:name=".MainActivity"

android/app/src/main/java/com/example/add_numbers/MainActivity.java

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

33
import android.os.Bundle;
44
import io.flutter.app.FlutterActivity;

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.add_numbers">
2+
package="com.example.numbers">
33
<!-- Flutter needs it to communicate with the running application
44
to allow setting breakpoints, to provide hot reload, etc.
55
-->

coverage/lcov.info

Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
SF:lib/screens/LoadingScreen.dart
2+
DA:8,0
3+
DA:9,0
4+
DA:19,0
5+
DA:21,0
6+
DA:22,0
7+
DA:25,0
8+
DA:26,0
9+
DA:29,0
10+
DA:30,0
11+
DA:31,0
12+
DA:32,0
13+
DA:36,0
14+
DA:37,0
15+
DA:38,0
16+
DA:41,0
17+
DA:42,0
18+
DA:46,0
19+
DA:47,0
20+
DA:48,0
21+
DA:51,0
22+
DA:53,0
23+
DA:54,0
24+
DA:57,0
25+
DA:59,0
26+
DA:60,0
27+
DA:61,0
28+
DA:62,0
29+
DA:63,0
30+
DA:64,0
31+
DA:66,0
32+
DA:67,0
33+
DA:68,0
34+
DA:69,0
35+
DA:70,0
36+
DA:72,0
37+
DA:74,0
38+
LF:36
39+
LH:0
40+
end_of_record
41+
SF:lib/utils/common.dart
42+
DA:5,0
43+
DA:14,0
44+
DA:16,0
45+
DA:17,0
46+
DA:21,0
47+
DA:22,0
48+
DA:25,0
49+
DA:26,0
50+
DA:29,0
51+
DA:30,0
52+
DA:37,0
53+
DA:38,0
54+
DA:39,0
55+
DA:40,0
56+
DA:41,0
57+
DA:49,0
58+
DA:50,0
59+
DA:51,0
60+
DA:52,0
61+
DA:56,0
62+
LF:20
63+
LH:0
64+
end_of_record

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>add_numbers</string>
14+
<string>numbers</string>
1515
<key>CFBundlePackageType</key>
1616
<string>APPL</string>
1717
<key>CFBundleShortVersionString</key>

lib/main.dart

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
// import 'package:add_numbers/screens/GameScreen.dart';
2-
import 'package:add_numbers/screens/GameScreen.dart';
3-
import 'package:add_numbers/screens/LoadingScreen.dart';
1+
// import 'package:numbers/screens/GameScreen.dart';
2+
import 'package:numbers/screens/GameScreen.dart';
3+
import 'package:numbers/screens/LoadingScreen.dart';
44
import 'package:flutter/material.dart';
55

66
void main() => runApp(new MaterialApp(

lib/schema/blackSchema.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import 'package:add_numbers/utils/common.dart';
1+
import 'package:numbers/utils/common.dart';
22
import 'package:flutter/material.dart';
33

44
class BlockSchema {

0 commit comments

Comments
 (0)