Skip to content

Commit 3042614

Browse files
committed
bug fixes and update changes
1 parent adfdbf6 commit 3042614

File tree

5 files changed

+14
-10
lines changed

5 files changed

+14
-10
lines changed

lib/apis/providers/api_provider.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import 'package:video_calling_app/constants/urls.dart';
66

77
class ApiProvider {
88
ApiProvider(this._client, {this.baseUrl}) {
9-
baseUrl ??= AppUrls.baseUrl;
9+
baseUrl ??= AppSecrets.awsServerUrl;
1010
}
1111

1212
final http.Client _client;

lib/modules/auth/views/change_password_view.dart

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,9 @@ class ChangePasswordView extends StatelessWidget {
2828
mainAxisAlignment: MainAxisAlignment.start,
2929
crossAxisAlignment: CrossAxisAlignment.start,
3030
children: [
31-
const NxAppBar(
31+
NxAppBar(
3232
title: StringValues.changePassword,
33+
padding: Dimens.edgeInsets8_16,
3334
),
3435
_buildBody(logic),
3536
],
@@ -41,7 +42,7 @@ class ChangePasswordView extends StatelessWidget {
4142
child: NxFilledButton(
4243
borderRadius: Dimens.zero,
4344
onTap: logic.changePassword,
44-
label: StringValues.changePassword,
45+
label: StringValues.changePassword.toUpperCase(),
4546
),
4647
)
4748
],
@@ -56,7 +57,7 @@ class ChangePasswordView extends StatelessWidget {
5657
Widget _buildBody(ChangePasswordController logic) => Expanded(
5758
child: SingleChildScrollView(
5859
child: Padding(
59-
padding: Dimens.edgeInsets8,
60+
padding: Dimens.edgeInsets8_16,
6061
child: FocusScope(
6162
node: logic.focusNode,
6263
child: Column(

lib/modules/calling/views/join_view.dart

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,9 @@ class JoinView extends StatelessWidget {
2929
mainAxisAlignment: MainAxisAlignment.start,
3030
crossAxisAlignment: CrossAxisAlignment.stretch,
3131
children: [
32-
const NxAppBar(
32+
NxAppBar(
3333
title: StringValues.join,
34+
padding: Dimens.edgeInsets8_16,
3435
),
3536
Expanded(
3637
child: Column(
@@ -39,7 +40,7 @@ class JoinView extends StatelessWidget {
3940
children: [
4041
const Expanded(child: SizedBox()),
4142
Padding(
42-
padding: Dimens.edgeInsets8,
43+
padding: Dimens.edgeInsets8_16,
4344
child: Column(
4445
children: [
4546
TextFormField(

lib/modules/calling/views/start_view.dart

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,9 @@ class StartView extends StatelessWidget {
2929
mainAxisAlignment: MainAxisAlignment.start,
3030
crossAxisAlignment: CrossAxisAlignment.stretch,
3131
children: [
32-
const NxAppBar(
32+
NxAppBar(
3333
title: StringValues.start,
34+
padding: Dimens.edgeInsets8_16,
3435
),
3536
Expanded(
3637
child: Column(
@@ -39,7 +40,7 @@ class StartView extends StatelessWidget {
3940
children: [
4041
const Expanded(child: SizedBox()),
4142
Padding(
42-
padding: Dimens.edgeInsets8,
43+
padding: Dimens.edgeInsets8_16,
4344
child: Column(
4445
children: [
4546
Row(

lib/modules/profile/views/profile_view.dart

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,13 @@ class ProfileView extends StatelessWidget {
2929
height: Dimens.screenHeight,
3030
child: Column(
3131
children: [
32-
const NxAppBar(
32+
NxAppBar(
3333
title: StringValues.profile,
34+
padding: Dimens.edgeInsets8_16,
3435
),
3536
Expanded(
3637
child: Padding(
37-
padding: Dimens.edgeInsets8,
38+
padding: Dimens.edgeInsets8_16,
3839
child: GetBuilder<ProfileController>(
3940
builder: (logic) {
4041
if (logic.isLoading) {

0 commit comments

Comments
 (0)