Skip to content

Commit

Permalink
chore: melos fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ibrahimozkn committed Jul 24, 2024
1 parent ae668f8 commit 17cbf48
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions designer_v2/lib/common_views/form_table_layout.dart
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ class FormSectionHeader extends StatelessWidget {
helpText: lockHelpText,
lockedStateText: lockedStateText,
unlockedStateText: unlockedStateText,
)
),
],
)
else
Expand Down Expand Up @@ -293,7 +293,7 @@ class FormLock extends StatefulWidget {
this.readOnly = false,
this.helpText,
this.lockedStateText,
this.unlockedStateText});
this.unlockedStateText,});

final bool locked;
final bool readOnly;
Expand Down Expand Up @@ -326,7 +326,7 @@ class _FormLockState extends State<FormLock> {
color: Colors.grey[100],
borderRadius: BorderRadius.circular(10.0),
border: Border.all(
color: Theme.of(context).disabledColor.withOpacity(0.05)),
color: Theme.of(context).disabledColor.withOpacity(0.05),),
),
padding: const EdgeInsets.all(6),
child: Row(
Expand All @@ -335,7 +335,7 @@ class _FormLockState extends State<FormLock> {
widget.locked
? widget.lockedStateText ?? 'Locked'
: widget.unlockedStateText ?? 'Unlocked',
style: Theme.of(context).textTheme.labelMedium),
style: Theme.of(context).textTheme.labelMedium,),
const SizedBox(width: 4),
AnimatedSwitcher(
duration: const Duration(milliseconds: 250),
Expand All @@ -348,7 +348,7 @@ class _FormLockState extends State<FormLock> {
),
),
],
)),
),),
SizedBox(
height: 30,
child: FittedBox(
Expand All @@ -370,7 +370,7 @@ class _FormLockState extends State<FormLock> {
),
),
],
));
),);

if (widget.helpText != null) {
return Tooltip(
Expand Down

0 comments on commit 17cbf48

Please sign in to comment.