mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2024-11-24 00:10:47 +00:00
added more room for exposure pairs list
This commit is contained in:
parent
778ab12de0
commit
6ee6c81164
1 changed files with 21 additions and 18 deletions
|
@ -76,28 +76,31 @@ class CameraContainer extends StatelessWidget {
|
|||
height: min(meteringContainerHeight, cameraPreviewHeight) + Dimens.paddingM * 2,
|
||||
),
|
||||
Expanded(
|
||||
child: Padding(
|
||||
padding: const EdgeInsets.symmetric(horizontal: Dimens.paddingM),
|
||||
child: Row(
|
||||
children: [
|
||||
Expanded(
|
||||
child: Padding(
|
||||
padding: EdgeInsets.only(top: topBarOverflow >= 0 ? topBarOverflow : 0),
|
||||
child: ExposurePairsList(
|
||||
exposurePairs,
|
||||
onExposurePairTap: onExposurePairTap,
|
||||
),
|
||||
child: Row(
|
||||
children: [
|
||||
Expanded(
|
||||
child: Padding(
|
||||
padding: EdgeInsets.only(
|
||||
left: Dimens.paddingM - Dimens.grid8,
|
||||
top: topBarOverflow >= 0 ? topBarOverflow : 0,
|
||||
),
|
||||
child: ExposurePairsList(
|
||||
exposurePairs,
|
||||
onExposurePairTap: onExposurePairTap,
|
||||
),
|
||||
),
|
||||
const SizedBox(width: Dimens.grid8),
|
||||
Expanded(
|
||||
child: Padding(
|
||||
padding: EdgeInsets.only(top: topBarOverflow <= 0 ? -topBarOverflow : 0),
|
||||
child: const _CameraControlsBuilder(),
|
||||
),
|
||||
SizedBox(
|
||||
width: MediaQuery.sizeOf(context).width / 2 - Dimens.grid4,
|
||||
child: Padding(
|
||||
padding: EdgeInsets.only(
|
||||
top: topBarOverflow <= 0 ? -topBarOverflow : 0,
|
||||
right: Dimens.paddingM,
|
||||
),
|
||||
child: const _CameraControlsBuilder(),
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
],
|
||||
|
|
Loading…
Reference in a new issue