Skip to content

Commit

Permalink
feat: openfoodfacts#1377 - modif mockup
Browse files Browse the repository at this point in the history
  • Loading branch information
cli1005 committed Apr 27, 2022
1 parent 9c2a256 commit 0e5a4fe
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,12 @@ class _EditIngredientsBody extends StatelessWidget {
flex: 1,
child: SingleChildScrollView(
child: Container(
color: Theme.of(context).colorScheme.background,
decoration: BoxDecoration(
color: Theme.of(context).colorScheme.background,
borderRadius: const BorderRadius.only(
topLeft: ANGULAR_RADIUS,
topRight: ANGULAR_RADIUS,
)),
child: Padding(
padding: const EdgeInsets.all(LARGE_SPACE),
child: Column(
Expand All @@ -295,6 +300,7 @@ class _EditIngredientsBody extends StatelessWidget {
textInputAction: TextInputAction.done,
onSubmitted: (_) => onSubmitField,
),
const SizedBox(height: SMALL_SPACE),
Text(appLocalizations.ingredients_editing_instructions,
style: Theme.of(context).textTheme.caption),
const SizedBox(height: MEDIUM_SPACE),
Expand Down

0 comments on commit 0e5a4fe

Please sign in to comment.