Chen Zhao
f9aabf2ee9
add iOS setup step 3b. remove RCTBridgeDelegate from AppDelegate.h (#4868 )
5 jaren geleden
jonathanmos
b444ab3092
reorder installation instructions (#4932 )
5 jaren geleden
David undefined
370abbb197
Update changelog (#4926 )
* Add 2.15.0 changes
* Add 2.16.0 changes
5 jaren geleden
wixmobile
ea245ae647
Update package.json version to 2.16.0 [ci skip]
5 jaren geleden
yogevbd
e2dcef9d4a
Fix topBar buttons iconsInsets
5 jaren geleden
Yogev Ben David
0e29a03a40
Fixes command completion event commandId (#4766 )
* Fixes command completion event commandId
* Fix e2e
5 jaren geleden
Evan Ricketts
1c740b74f2
[V2] Tweak app lifecycle docs (#4877 )
* app launch docs consistent UI capitalisation
* app launch docs greater detail
5 jaren geleden
wixmobile
62e2de47ab
Update package.json version to 2.15.0 [ci skip]
5 jaren geleden
Yogev Ben David
0186b1ac36
Prevent retaining button component in componentRegistry (#4888 )
5 jaren geleden
Yedidya Kennard
5ba7ccb75f
no message (#4885 )
5 jaren geleden
RoTTex
6cb1e18a88
[v2][iOS] Fix display empty custom topBar background over valid custom background (#4823 )
* [V2] [iOS] Fix iOS custom topBar background component
* Revert "[V2] [iOS] Fix iOS custom topBar background component"
This reverts commit aab340dbf5 .
* Remove previous customTopBar and customTopBarBackground before new one
5 jaren geleden
Yogev Ben David
a98f18704c
Fix and refactor animations options (#4880 )
5 jaren geleden
Guy Carmeli
f484c2c2f4
Update changelog
5 jaren geleden
Guy Carmeli
1f25ecbe5d
Document app launch and the differences between platforms in this regard
5 jaren geleden
wixmobile
66e5b55baa
Update package.json version to 2.14.0 [ci skip]
5 jaren geleden
Guy Carmeli
602c669b02
External component lifecycle events (#4872 )
* Add external component e2e
* Emit appear and disappear events for external components
5 jaren geleden
Guy Carmeli
4517d22b38
[BREAKING] Rename animation options class name
I found the names used for the animation classes to be a bit undescriptive,
even though this might break a few users I think it’s for the best as a few
contributors were confused by these names as well.
5 jaren geleden
Guy Carmeli
dc1b980274
Add peek pop example to playground app
This commit also allows TouchablePreview component to accept any touchable components,
not only the ones included in RN.
5 jaren geleden
Guy Carmeli
eb17eb2139
Some more code clean up in playground app
5 jaren geleden
larryranches
996f2b11ff
Add enabled property to OptionsAnimationSeparateType (#4832 )
5 jaren geleden
Guy Carmeli
24a8c53a2c
Add ScrollView inside Overlay example
Complex layouts were added to relevant parts in the playground app.
5 jaren geleden
Mohammad Ali Jafarian
025c5e8dd6
Add direction property to OptionsLayout (#4847 )
Add direction property to OptionsLayout interface
5 jaren geleden
Arman Dezfuli-Arjomandi
81d8b69d61
[V2] Fix iOS pop gesture when topBar is hidden (#4568 )
* Fix iOS pop gesture when nav bar is hidden
* Add missing property
* Factor out InteractivePopGestureDelegate into its own file
* Add missing import
* Make sure fix supports hidden and visible nav bars
* Minor code style fix
5 jaren geleden
Guy Carmeli
fdee25422f
Fix crash when calling setStackRoot multiple times in quick succession (#4843 )
Previous push animation wasn’t cancelled, when it ended the controller tried
to destroy previous view which was already destroyed.
5 jaren geleden
Guy Carmeli
47b7d2c7c5
Cancel in-flight push animation on pop (#4842 )
When popToRoot or popTo where called while a screen was pushed, at the end of the push animation RNN tried to destroy an already destroyed ViewController.
Related to #3767
5 jaren geleden
Guy Carmeli
57750961a9
Clean playground app
Mostly removed unused files left over from the recent playground app refactor
5 jaren geleden
Nicolas Charpentier
f67c59c508
Fix typos in styling.md (#4829 )
Fix typos in styling.md
5 jaren geleden
Hadi Mostafapour
1899601fb9
[Android] Fix title glitch and alignment (#4809 )
Fix android title glitch and title center alignment issue on layout orientation change
5 jaren geleden
Nicolas Charpentier
b054fca31d
s/asembleDebug/assembleDebug (#4816 )
5 jaren geleden
mukesh mandiwal
047ea44fea
Fix code sample in the documentation for layouts bottomTabs (#4808 )
Add curly braces around the visible property
5 jaren geleden
Hadi Mostafapour
40d2520094
layout direction docs (#4810 )
5 jaren geleden
wixmobile
c6b6f731f4
Update package.json version to 2.13.1 [ci skip]
5 jaren geleden
Guy Carmeli
2c514d931f
Move uilib to devDependencies (#4806 )
uilib is used only in the playground app and was added by mistake to dependencies.
5 jaren geleden
James Pearson
617c5ba5da
Fixed broken links to Usage and LayoutTypes (#4803 )
5 jaren geleden
Guy Carmeli
e915bec9f5
Update CHANGELOG.md
5 jaren geleden
Guy Carmeli
b4250e7d6a
Update changelog
5 jaren geleden
wixmobile
987545bfac
Update package.json version to 2.13.0 [ci skip]
5 jaren geleden
Guy Carmeli
54ff1cd049
Fix overflow visible for react button components in TopBar (#4802 )
React button components now support overflow: visible. This property is especially useful when displaying buttons with a badge
which exceeds the button bounds.
5 jaren geleden
Shalom Yerushalmy
e50906d887
Xcode10 (#4795 )
* Add -UseModernBuildSystem=NO for xcodebuild
* Add -UseModernBuildSystem to detox build
6 jaren geleden
Tom Hicks
aba58b6c5a
Prevent keyboard from hiding when overlay is shown (#4778 )
If you use overlays to show in-app notifications
it would closes the keyboard every time an overlay is
opened.
6 jaren geleden
Yogev Ben David
8282d934f7
Fix top bar buttons size on iOS 10 (#4783 )
Fix top bar buttons size on iOS 10
Fixes #4759
6 jaren geleden
taichi-jp
6065bd1345
Add to interface OptionsAnimationProperties (#4780 )
6 jaren geleden
Guy Carmeli
bfdd41fcb4
Cleanup and reorganise playground app (#4767 )
* Cleanup and reorganise playground app
* Separated tests into three categories
1. Layouts - layout specific tests and feature showcase
2. Options - options related tests; interactions between static and dynamic options, merge options etc
3. Navigation - general navigation features; Orientation handling, events, Overlay etc
* Fixed a few Android bugs
1. testID wasn’t applied on TopBar react buttons
2. static options were disregarded when creating initial BottomTab options
3. Trying to open a none existent SideMenu would result in a crash
* Fix e2e tests
* Fix lint
* Few fixes + split push from SideMenu test into two tests
* Fixes e2e
6 jaren geleden
Yogev Ben David
e036743813
Fixes initial screen size (#4781 )
6 jaren geleden
Guy Carmeli
f5ada51620
Add SideMenu tests related to open gesture
On Android options were not updated when SideMenu was opened or closed
via swipe gesture. This caused bugs when trying to interact with the drawer again via gestures since
the drawer would immediately close or open according to the visibility in options.
6 jaren geleden
gosuperninja
43f05ee015
Update side menu options on open / close callback (#4745 )
6 jaren geleden
Guy Carmeli
c82bc57d58
Fix loading local images (#4769 )
When loading local image resource (images in Drawable folder), RNN mistakingly tried to load the image as a js asset even if it successfully loaded the local image.
6 jaren geleden
Steven Vanderschaeve
be17322abd
[V2] Fix: typo in documentation: Stater kits (#4762 )
Replace with 'Starter kits'
6 jaren geleden
wixmobile
62f986ba68
Update package.json version to 2.12.0 [ci skip]
6 jaren geleden
Hadi Mostafapour
d09d0108d1
RTL Layout (#4575 )
* Support rtl layout
* ios layout options
* Support rtl layout
* Use View.LAYOUT_DIRECTION_LTR constant instead of 0
* move layout direction logic to RootPresenter
* Fix tests
* Fix tests
* Fix tests
* Fix tests
* fix tests
* Fix tests
6 jaren geleden