File tree Expand file tree Collapse file tree 5 files changed +14
-10
lines changed Expand file tree Collapse file tree 5 files changed +14
-10
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ import 'package:video_calling_app/constants/urls.dart';
66
77class ApiProvider {
88 ApiProvider (this ._client, {this .baseUrl}) {
9- baseUrl ?? = AppUrls .baseUrl ;
9+ baseUrl ?? = AppSecrets .awsServerUrl ;
1010 }
1111
1212 final http.Client _client;
Original file line number Diff line number Diff 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 (
Original file line number Diff line number Diff 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 (
Original file line number Diff line number Diff 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 (
Original file line number Diff line number Diff 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) {
You can’t perform that action at this time.
0 commit comments