Skip to content

Commit

Permalink
fix: Misaligned Inkwell Fixed (#1459)
Browse files Browse the repository at this point in the history
* Misaligned Padding Fixed
  • Loading branch information
abhay1821 authored Apr 3, 2022
1 parent 1712a5e commit a7c65f0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,10 @@ class KnowledgePanelTitleCard extends StatelessWidget {
iconWidget = <Widget>[];
}
return Padding(
padding: const EdgeInsets.only(top: SMALL_SPACE),
padding: const EdgeInsets.only(
top: VERY_SMALL_SPACE,
bottom: VERY_SMALL_SPACE,
),
child: Row(
children: <Widget>[
...iconWidget,
Expand Down
3 changes: 2 additions & 1 deletion packages/smooth_app/lib/pages/onboarding/welcome_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,8 @@ class WelcomePage extends StatelessWidget {
inputDecoration: InputDecoration(
enabledBorder: const OutlineInputBorder(
borderSide: BorderSide(
color: Color.fromARGB(255, 235, 235, 235)),
color: Color.fromARGB(255, 235, 235, 235),
),
borderRadius: ROUNDED_BORDER_RADIUS,
),
filled: Theme.of(context).colorScheme.brightness ==
Expand Down

0 comments on commit a7c65f0

Please sign in to comment.