Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
ecac0a5
Implemented component first steps - enums, props, basic logic layout,…
yotam-wix Dec 22, 2025
e76bba7
re-construct foundation of component
yotam-wix Dec 28, 2025
d4f8b92
background prop handling
yotam-wix Dec 28, 2025
e5511bb
added vertical layout alignment support - fix width option
yotam-wix Dec 28, 2025
a8df60f
added footerScreen, fixed alignment bugs
yotam-wix Dec 28, 2025
c4f2eb5
horizontal alignment sorted, improved screen functionality
yotam-wix Dec 30, 2025
01c9a52
added support of sticky vs. hoisted keyboard. fixed overflow issues
yotam-wix Dec 30, 2025
f4352ea
added items fit support to both component and screen, added image sup…
yotam-wix Dec 30, 2025
a1baac4
Added support of hideOnScroll with new hook - useScrollToHide.
yotam-wix Jan 1, 2026
4af7b9f
added animation support, for keyboard and entrance.
yotam-wix Jan 1, 2026
14def43
switched animations from react animated to reanimated for better visu…
yotam-wix Jan 5, 2026
87848e5
types bug fix
yotam-wix Jan 8, 2026
ac69b5d
apply small fixes due to PR comments, move types to different file
yotam-wix Jan 11, 2026
a2c5e70
add docs api json file
yotam-wix Jan 11, 2026
faf7374
add basic render tests
yotam-wix Jan 11, 2026
461fb78
multiple android bug fixes + keyboardAccessibilityView support + bett…
yotam-wix Jan 13, 2026
9739b2a
added support of 5 sizes to gradient image used in fading background
yotam-wix Jan 13, 2026
7547d9d
generated an improve docs, still need to update links to wixmp files
yotam-wix Jan 13, 2026
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
1 change: 1 addition & 0 deletions demo/src/screens/MenuStructure.js
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ export const navigationData = {
{title: 'Dialog', tags: 'dialog modal popup alert', screen: 'unicorn.components.DialogScreen'},
{title: 'Feature Highlight', tags: 'native feature overlay', screen: 'unicorn.components.FeatureHighlightScreen'},
{title: 'Floating Button', tags: 'floating button', screen: 'unicorn.components.FloatingButtonScreen'},
{title: 'Screen Footer', tags: 'screen footer sticky bottom', screen: 'unicorn.components.ScreenFooterScreen'},
{title: 'Hint', tags: 'hints tooltip', screen: 'unicorn.components.HintsScreen'},
{title: 'Toast', tags: 'toast top bottom snackbar', screen: 'unicorn.components.ToastsScreen'}
]
Expand Down
Loading