Skip to content

Commit f250ff6

Browse files
committed
full release
1 parent 3fa99d1 commit f250ff6

File tree

3 files changed

+28
-4
lines changed

3 files changed

+28
-4
lines changed

android/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ android {
3131
applicationId "com.groovinchip.flutter.callmanager"
3232
minSdkVersion 16
3333
targetSdkVersion 27
34-
versionCode 23
35-
versionName "2.0 beta 7"
34+
versionCode 29
35+
versionName "2.0"
3636
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
3737
}
3838

lib/add_new_call_screen.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ class _AddNewCallScreenState extends State<AddNewCallScreen> {
158158
mainAxisAlignment: MainAxisAlignment.center,
159159
children: <Widget>[
160160
Padding(
161-
padding: const EdgeInsets.only(left: 16.0, top: 16.0, bottom: 8.0),
161+
padding: const EdgeInsets.only(left: 16.0, top: 6.0, bottom: 8.0),
162162
child: Text(
163163
"New Call",
164164
style: TextStyle(

lib/home_screen.dart

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,31 @@ class _HomeScreenState extends State<HomeScreen> {
9595
)
9696
],
9797
)
98-
: Center(child: Text("No Calls"));
98+
: Column(
99+
children: <Widget>[
100+
Expanded(
101+
flex: 1,
102+
child: Row(
103+
mainAxisAlignment: MainAxisAlignment.center,
104+
children: <Widget>[
105+
Text(
106+
"Call Manager",
107+
style: TextStyle(
108+
fontSize: 22.0,
109+
fontWeight: FontWeight.bold,
110+
),
111+
),
112+
],
113+
),
114+
),
115+
Expanded(
116+
flex: 15,
117+
child: Center(
118+
child: Text("No calls"),
119+
),
120+
),
121+
],
122+
);
99123
}
100124
},
101125
),

0 commit comments

Comments
 (0)