Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions lib/presentation/home/home_screen.dart
Original file line number Diff line number Diff line change
Expand Up @@ -200,8 +200,8 @@ class _HomeScreenState extends State<HomeScreen> {
Container(
width: 45.w,
child: HikeButton(
buttonWidth: homebwidth - 10,
buttonHeight: homebheight - 2,
buttonWidth: homebwidth ,
buttonHeight: homebheight - homebheight / 3,
text: 'Create Group',
textColor: Colors.white,
borderColor: Colors.white,
Expand All @@ -219,7 +219,7 @@ class _HomeScreenState extends State<HomeScreen> {
width: 45.w,
child: HikeButton(
buttonWidth: homebwidth,
buttonHeight: homebheight - 2,
buttonHeight: homebheight - homebheight / 3,
text: 'Join a Group',
textColor: kYellow,
borderColor: kYellow,
Expand Down
1 change: 1 addition & 0 deletions lib/presentation/widgets/hike_button.dart
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ class HikeButton extends StatelessWidget {
Text(
text!,
style: TextStyle(color: textColor, fontSize: textSize),

),
),
onPressed: onTap as void Function()?,
Expand Down