Skip to content

Commit

Permalink
add padding
Browse files Browse the repository at this point in the history
  • Loading branch information
cp-ishita-g committed Jul 22, 2024
1 parent ad6b33f commit ed90ff5
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion app/ios/Runner/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
<dict>
<key>CFBundleURLSchemes</key>
<array>
<string>com.googleusercontent.apps.159803135906-moi01vqn0m65ld95pg92qv6hol7s78pm</string>
<string>com.googleusercontent.apps.406838982484-to095m87ai3cv8nqi86rbjjusdd7sagh</string>
</array>
</dict>
</array>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ class _SignInWithPhoneScreenState extends ConsumerState<SignInWithPhoneScreen> {
enabled: enable && !loading,
progress: loading,
context.l10n.common_next,
onPressed: notifier.verifyPhone,
onPressed: () => notifier.verifyPhone(),
),
],
)));
Expand Down
1 change: 1 addition & 0 deletions app/lib/ui/flow/onboard/connection_screen.dart
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ class _ConnectionScreenState extends State<ConnectionScreen> {
return Center(
child: Stack(children: [
ListView(
padding: const EdgeInsets.symmetric(horizontal: 16),
children: [
const SizedBox(height: 40),
Text(
Expand Down
8 changes: 3 additions & 5 deletions app/lib/ui/flow/onboard/pick_name_screen.dart
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import 'package:style/button/bottom_sticky_overlay.dart';
import 'package:style/button/primary_button.dart';
import 'package:style/extenstions/context_extenstions.dart';
import 'package:style/text/app_text_dart.dart';
import 'package:style/text/app_text_field.dart';
import 'package:yourspace_flutter/domain/extenstions/context_extenstions.dart';
import 'package:yourspace_flutter/ui/app_route.dart';
import 'package:yourspace_flutter/ui/components/app_page.dart';
Expand Down Expand Up @@ -79,7 +80,7 @@ class _PickNameScreenState extends ConsumerState<PickNameScreen> {
Widget _nameTextField(TextEditingController controller) {
return Padding(
padding: const EdgeInsets.symmetric(vertical: 16),
child: CupertinoTextField(
child: AppTextField(
controller: controller,
onChanged: (value) => _notifier.enableNextButton(),
keyboardType: TextInputType.text,
Expand All @@ -89,10 +90,7 @@ class _PickNameScreenState extends ConsumerState<PickNameScreen> {
style: AppTextStyle.subtitle2.copyWith(
color: context.colorScheme.textPrimary,
),
decoration: BoxDecoration(
border: Border(
bottom:
BorderSide(color: context.colorScheme.containerNormal))),
borderType: AppTextFieldBorderType.underline,
),
);
}
Expand Down

0 comments on commit ed90ff5

Please sign in to comment.