Skip to content

Commit

Permalink
fix requests
Browse files Browse the repository at this point in the history
  • Loading branch information
LucaCoduriV committed Aug 30, 2022
1 parent 219b601 commit 18bb864
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
8 changes: 7 additions & 1 deletion lib/screens/add_meal.dart
Original file line number Diff line number Diff line change
Expand Up @@ -399,7 +399,13 @@ class _TimePickerbutton extends StatelessWidget {
children: [
const Icon(Icons.timer),
const SizedBox(width: 10),
Text(_text),
Text(
_text,
style: Theme.of(context).textTheme.bodyText1!.copyWith(
color: const Color.fromARGB(255, 112, 112, 112),
fontSize: 15,
),
),
],
),
),
Expand Down
2 changes: 1 addition & 1 deletion lib/widgets/forms/main_text_field.dart
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ class _MainTextFieldState extends State<MainTextField> {
decoration: InputDecoration(
prefixIcon: IconTheme(
data: const IconThemeData(
color: Colors.black38,
color: Color(0xFF5B5B5B),
),
child: widget.icon,
),
Expand Down
2 changes: 1 addition & 1 deletion lib/widgets/slider_with_text.dart
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class SliderWithText extends StatelessWidget {
child: Column(
children: [
Padding(
padding: const EdgeInsets.fromLTRB(20, 10, 20, 0),
padding: const EdgeInsets.fromLTRB(13, 10, 13, 0),
child: Row(
mainAxisAlignment: MainAxisAlignment.start,
children: [
Expand Down

0 comments on commit 18bb864

Please sign in to comment.