create-expo-stack 2.10.5-next.0aee640 → 2.10.5-next.486a940
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,10 +1,16 @@
|
|
|
1
|
-
import { forwardRef } from 'react';
|
|
2
|
-
import {
|
|
1
|
+
import { ComponentProps, forwardRef } from 'react';
|
|
2
|
+
import { TamaguiElement } from 'tamagui';
|
|
3
3
|
|
|
4
|
-
|
|
4
|
+
import { Button as TButton } from '../tamagui.config';
|
|
5
|
+
|
|
6
|
+
type ButtonProps = {
|
|
7
|
+
title: string;
|
|
8
|
+
} & ComponentProps<typeof TButton>;
|
|
9
|
+
|
|
10
|
+
export const Button = forwardRef<TamaguiElement, ButtonProps>(({ title, ...tButtonProps }, ref) => {
|
|
5
11
|
return (
|
|
6
|
-
<TButton
|
|
7
|
-
|
|
12
|
+
<TButton {...tButtonProps} ref={ref}>
|
|
13
|
+
{title}
|
|
8
14
|
</TButton>
|
|
9
15
|
);
|
|
10
16
|
});
|
|
@@ -4,7 +4,7 @@ import { createMedia } from "@tamagui/react-native-media-driver";
|
|
|
4
4
|
import { shorthands } from "@tamagui/shorthands";
|
|
5
5
|
import { themes, tokens } from "@tamagui/themes";
|
|
6
6
|
<% if (props.navigationPackage?.type === "navigation") { %>
|
|
7
|
-
import { createTamagui, styled, SizableText, H1, YStack } from "tamagui";
|
|
7
|
+
import { createTamagui, styled, SizableText, H1, YStack, Button as ButtonTamagui } from "tamagui";
|
|
8
8
|
<% } else { %>
|
|
9
9
|
import { createTamagui } from "tamagui";
|
|
10
10
|
<% } %>
|
|
@@ -54,33 +54,32 @@ const bodyFont = createInterFont();
|
|
|
54
54
|
color: '#38434D',
|
|
55
55
|
size: '$9',
|
|
56
56
|
});
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
backgroundColor: '#6366F1',
|
|
62
|
-
borderRadius: 28,
|
|
57
|
+
|
|
58
|
+
export const Button = styled(ButtonTamagui, {
|
|
59
|
+
backgroundColor: '#6366F1',
|
|
60
|
+
borderRadius: 28,
|
|
63
61
|
hoverStyle: {
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
62
|
+
backgroundColor: '#5a5fcf',
|
|
63
|
+
},
|
|
64
|
+
pressStyle: {
|
|
65
|
+
backgroundColor: '#5a5fcf',
|
|
66
|
+
},
|
|
67
67
|
maxWidth: 500,
|
|
68
|
-
padding: 16,
|
|
69
|
-
shadowColor: '#000',
|
|
70
|
-
shadowOffset: {
|
|
71
|
-
height: 2,
|
|
72
|
-
width: 0,
|
|
73
|
-
},
|
|
74
|
-
shadowOpacity: 0.25,
|
|
75
|
-
shadowRadius: 3.84,
|
|
76
|
-
});
|
|
77
68
|
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
69
|
+
// Shaddows
|
|
70
|
+
shadowColor: '#000',
|
|
71
|
+
shadowOffset: {
|
|
72
|
+
height: 2,
|
|
73
|
+
width: 0,
|
|
74
|
+
},
|
|
75
|
+
shadowOpacity: 0.25,
|
|
76
|
+
shadowRadius: 3.84,
|
|
77
|
+
|
|
78
|
+
// Button text
|
|
79
|
+
color: '#FFFFFF',
|
|
80
|
+
fontWeight: '600', // Is not passed down to the text. Probably a bug in Tamagui: https://github.com/tamagui/tamagui/issues/1156#issuecomment-1802594930
|
|
81
|
+
fontSize: 16,
|
|
82
|
+
});
|
|
84
83
|
<% } %>
|
|
85
84
|
|
|
86
85
|
const config = createTamagui({
|