-
Notifications
You must be signed in to change notification settings - Fork 1
Even more bug fixing! #102
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -26,7 +26,7 @@ const { width: SCREEN_WIDTH } = Dimensions.get('window'); | |
| // Grid configuration | ||
| const NUM_COLUMNS = 3; // 3 columns for a 2x3 grid (6 items total) | ||
| const GRID_GAP = 4; // Gap between items | ||
| const HORIZONTAL_PADDING = 32; // Account for parent container padding (16 on each side) | ||
| const HORIZONTAL_PADDING = 40; // Account for parent container padding (20 on each side) | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
|
|
||
| // Calculate item width: (available width - gaps between items) / number of columns | ||
| // With 3 columns, there are 2 gaps between them | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -215,7 +215,14 @@ export default function Button({ | |
| size: 20, | ||
| color: getIconColor(), | ||
| })} | ||
| <Text style={[getTextStyle(), textStyle]}>{title}</Text> | ||
| <Text | ||
| style={[getTextStyle(), textStyle]} | ||
| numberOfLines={1} | ||
| adjustsFontSizeToFit | ||
| minimumFontScale={0.8} | ||
|
Comment on lines
+221
to
+222
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. nice |
||
| > | ||
| {title} | ||
| </Text> | ||
| {iconRight && | ||
| React.createElement(iconRight, { | ||
| size: 20, | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -161,6 +161,7 @@ const styles = StyleSheet.create({ | |
| }, | ||
| buttonContainer: { | ||
| flexDirection: 'row', | ||
| flexWrap: 'wrap', | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. do you have a pic of the before/after of this? i can't seem to test it on local rn (prob cuz match cards aren't shown yet?) |
||
| gap: 16, | ||
| flex: 1, | ||
| // width: '50%', | ||
|
|
||

There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
thanks for this fix! While you're at it, do you also wanna try fixing the Log in page flashing briefly before you go to Home?
Simulator.Screen.Recording.-.iPhone.16.Plus.-.2025-11-30.at.11.26.34.mp4