Skip to content

Commit e099fdd

Browse files
refactor(form_flow): removed unnecessary parameters (#33)
Co-authored-by: Miguel Yurivilca <miguel.yurivilca.16@gmail.com> Co-authored-by: Marcos Sevilla <31174242+marcossevilla@users.noreply.github.com>
1 parent b59e72e commit e099fdd

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

examples/form_flow/ios/Runner.xcodeproj/project.pbxproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@
127127
97C146E61CF9000F007C117D /* Project object */ = {
128128
isa = PBXProject;
129129
attributes = {
130-
LastUpgradeCheck = 1210;
130+
LastUpgradeCheck = 1300;
131131
ORGANIZATIONNAME = "";
132132
TargetAttributes = {
133133
97C146ED1CF9000F007C117D = {

examples/form_flow/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<Scheme
3-
LastUpgradeVersion = "1210"
3+
LastUpgradeVersion = "1300"
44
version = "1.3">
55
<BuildAction
66
parallelizeBuildables = "YES"

examples/form_flow/ios/Runner/Info.plist

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,5 +48,7 @@
4848
</array>
4949
<key>UIViewControllerBasedStatusBarAppearance</key>
5050
<false/>
51+
<key>CADisableMinimumFrameDurationOnPhone</key>
52+
<true/>
5153
</dict>
5254
</plist>

examples/form_flow/lib/signup/credentials/cubit/credentials_cubit.dart

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ class CredentialsCubit extends Cubit<CredentialsState> {
1212
emit(
1313
state.copyWith(
1414
email: email,
15-
name: state.name,
1615
status: Formz.validate([email, state.name]),
1716
),
1817
);
@@ -22,7 +21,6 @@ class CredentialsCubit extends Cubit<CredentialsState> {
2221
final name = NameFormInput.dirty(value);
2322
emit(
2423
state.copyWith(
25-
email: state.email,
2624
name: name,
2725
status: Formz.validate([state.email, name]),
2826
),

examples/form_flow/packages/profile/lib/src/models/user.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ class User extends Equatable {
1212
required this.pin,
1313
});
1414

15-
/// Returns a `User` object with default properties.
15+
/// Returns a [User] object with default properties.
1616
const User.empty() : this(email: '', name: '', biography: '', pin: '');
1717

1818
/// The user's email address.

0 commit comments

Comments
 (0)