mirror of
https://github.com/SyncrowIOT/syncrow-app.git
synced 2025-08-26 07:19:39 +00:00
fixes issue
This commit is contained in:
@ -242,17 +242,20 @@ class SceneItem extends StatelessWidget {
|
||||
],
|
||||
),
|
||||
padding: const EdgeInsets.all(16),
|
||||
child: Row(
|
||||
child: Column(
|
||||
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
children: [
|
||||
Row(
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
||||
children: [
|
||||
Column(
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
crossAxisAlignment: CrossAxisAlignment.center,
|
||||
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
||||
children: [
|
||||
if (!disablePlayButton)
|
||||
Expanded(
|
||||
child: Image.memory(
|
||||
Image.memory(
|
||||
icon,
|
||||
height: 32,
|
||||
width: 32,
|
||||
@ -263,13 +266,14 @@ class SceneItem extends StatelessWidget {
|
||||
width: 32,
|
||||
fit: BoxFit.fill),
|
||||
),
|
||||
],
|
||||
),
|
||||
CircularCheckbox(
|
||||
value: value,
|
||||
onChanged: (isSelected) => onChanged(isSelected!),
|
||||
),
|
||||
],
|
||||
),
|
||||
Spacer(),
|
||||
Expanded(
|
||||
child: Container(
|
||||
width: MediaQuery.of(context).size.width * 0.3,
|
||||
child: Row(
|
||||
children: [
|
||||
BodyMedium(
|
||||
text: title,
|
||||
style: const TextStyle(
|
||||
@ -280,18 +284,6 @@ class SceneItem extends StatelessWidget {
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
),
|
||||
],
|
||||
),
|
||||
Expanded(
|
||||
child: CircularCheckbox(
|
||||
value: value,
|
||||
onChanged: (isSelected) => onChanged(isSelected!),
|
||||
),
|
||||
),
|
||||
],
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
|
@ -213,7 +213,11 @@ class SceneItem extends StatelessWidget {
|
||||
],
|
||||
),
|
||||
padding: const EdgeInsets.all(16),
|
||||
child: Row(
|
||||
child: Column(
|
||||
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
children: [
|
||||
Row(
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
||||
children: [
|
||||
@ -233,6 +237,14 @@ class SceneItem extends StatelessWidget {
|
||||
width: 32,
|
||||
fit: BoxFit.fill),
|
||||
),
|
||||
],
|
||||
),
|
||||
CircularCheckbox(
|
||||
value: value,
|
||||
onChanged: (isSelected) => onChanged(isSelected!),
|
||||
),
|
||||
],
|
||||
),
|
||||
BodyMedium(
|
||||
text: title,
|
||||
style: const TextStyle(
|
||||
@ -243,12 +255,6 @@ class SceneItem extends StatelessWidget {
|
||||
),
|
||||
],
|
||||
),
|
||||
CircularCheckbox(
|
||||
value: value,
|
||||
onChanged: (isSelected) => onChanged(isSelected!),
|
||||
),
|
||||
],
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
|
@ -5,7 +5,7 @@ description: This is the mobile application project, developed with Flutter for
|
||||
# pub.dev using `flutter pub publish`. This is preferred for private packages.
|
||||
publish_to: "none" # Remove this line if you wish to publish to pub.dev
|
||||
|
||||
version: 1.0.9+42
|
||||
version: 1.0.9+44
|
||||
|
||||
environment:
|
||||
sdk: ">=3.0.6 <4.0.0"
|
||||
|
Reference in New Issue
Block a user