Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
365bc4c
prototype
chiuam Mar 30, 2021
dc88091
style gradient
chiuam Mar 31, 2021
ac0595f
resolve conflicts
chiuam Apr 28, 2021
1874f74
componentize shimmer
chiuam Apr 28, 2021
f604b5a
prototype
chiuam Mar 30, 2021
028d490
style gradient
chiuam Mar 31, 2021
bafb1d4
Android theme (#613)
tamasane97 Mar 15, 2021
28bbaed
📦 applying package updates ***NO_CI***
UI-Fabric-RN-Bot Mar 15, 2021
9b32a5c
Add repository link for @fluentui/react-native (#649)
ksiler Mar 29, 2021
21e152c
Add a nil check to Avatar image property (#650)
Saadnajmi Mar 30, 2021
ff066db
Update Radio Button focus border style to be WCAG 2.1 compliant (#653)
ksiler Apr 1, 2021
2af0f40
Add the rainbow gradient border image test case to experimental avata…
Saadnajmi Apr 2, 2021
785b104
Add apple theme static libraries to NuGet package (#655)
Saadnajmi Apr 3, 2021
5854ccc
Fix npm publish pipeline (hopefully) (#656)
tamasane97 Apr 7, 2021
5026ba4
📦 applying package updates ***NO_CI***
UI-Fabric-RN-Bot Apr 7, 2021
b069f2e
Android Svg Support (#652)
tamasane97 Apr 7, 2021
5292a5f
📦 applying package updates ***NO_CI***
UI-Fabric-RN-Bot Apr 7, 2021
c7353d1
Fix typo in nuspec (#659)
Saadnajmi Apr 9, 2021
1407d1d
Add Icon support for macOS (#645)
amgleitman Apr 15, 2021
d86d656
📦 applying package updates ***NO_CI***
UI-Fabric-RN-Bot Apr 15, 2021
367e77d
chore: `rnx-start` is deprecated (#660)
tido64 Apr 16, 2021
1e2fb24
Fix more typos in the nuspec (#661)
Saadnajmi Apr 19, 2021
6498ab5
Revamp Android ThemePicker (#664)
tamasane97 Apr 21, 2021
07d0229
Add a Contributing markdown file (#555)
Saadnajmi Apr 26, 2021
eaa29e1
Add RNSVG dependency to Icon and update RNSVG version throughout (#668)
warren-ms Apr 28, 2021
f1bffad
Add explicit react-native-svg dependency to FURN Icon (#666)
amgleitman Apr 28, 2021
b9f19af
componentize shimmer
chiuam Apr 28, 2021
989ec8a
pull in latest changes
chiuam Apr 28, 2021
54a8eb5
move shimmer to experimental
chiuam Apr 29, 2021
28666e0
create slots for shapes
chiuam Apr 29, 2021
67c8abe
revamp shimmer slots
chiuam Apr 29, 2021
fa399d5
implement shimmerElement to group sub-elements
chiuam Apr 30, 2021
72b513d
Change files
chiuam Apr 30, 2021
c4d11cf
add shimmer to android and accessibility support
chiuam May 3, 2021
1aacd69
use useRef hook and union types
chiuam May 6, 2021
51765dc
remove rect & circle slots
chiuam May 7, 2021
c6343a0
documentation
chiuam May 7, 2021
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 apps/fluent-tester/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
"@fluentui-react-native/experimental-avatar": ">=0.7.1 <1.0.0",
"@fluentui-react-native/experimental-button": "0.5.1",
"@fluentui-react-native/experimental-native-button": ">=0.5.3 <1.0.0",
"@fluentui-react-native/experimental-shimmer": "0.1.0",
"@fluentui-react-native/experimental-text": ">=0.4.1 <1.0.0",
"@fluentui-react-native/framework": ">=0.5.1 <1.0.0",
"@fluentui-react-native/icon": "0.5.0",
Expand Down

Large diffs are not rendered by default.

6 changes: 6 additions & 0 deletions apps/fluent-tester/src/FluentTester/testPages.android.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ import { HOMEPAGE_PERSONACOIN_BUTTON, PersonaCoinTest } from './TestComponents/P
import { HOMEPAGE_PRESSABLE_BUTTON, PressableTest } from './TestComponents/Pressable';
import { HOMEPAGE_RADIOGROUP_BUTTON, RadioGroupTest } from './TestComponents/RadioGroup';
import { HOMEPAGE_SEPARATOR_BUTTON, SeparatorTest } from './TestComponents/Separator';
import { HOMEPAGE_SHIMMER_BUTTON, ShimmerTest } from './TestComponents/Shimmer';
import { HOMEPAGE_SVG_BUTTON, SvgTest } from './TestComponents/Svg';
import { HOMEPAGE_TEXT_BUTTON, TextTest } from './TestComponents/Text';
import { HOMEPAGE_THEME_BUTTON, ThemeTest } from './TestComponents/Theme';
Expand Down Expand Up @@ -51,6 +52,11 @@ export const tests: TestDescription[] = [
component: SeparatorTest,
testPage: HOMEPAGE_SEPARATOR_BUTTON,
},
{
name: 'Shimmer Test',
component: ShimmerTest,
testPage: HOMEPAGE_SHIMMER_BUTTON,
},
{
name: 'Text Test',
component: TextTest,
Expand Down
6 changes: 6 additions & 0 deletions apps/fluent-tester/src/FluentTester/testPages.macos.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ import { NativeButtonTest, HOMEPAGE_NATIVEBUTTON_BUTTON } from './TestComponents
import { HOMEPAGE_PERSONA_BUTTON, PersonaTest } from './TestComponents/Persona';
import { HOMEPAGE_PERSONACOIN_BUTTON, PersonaCoinTest } from './TestComponents/PersonaCoin';
import { HOMEPAGE_PRESSABLE_BUTTON, PressableTest } from './TestComponents/Pressable';
import { HOMEPAGE_SHIMMER_BUTTON, ShimmerTest } from './TestComponents/Shimmer';
import { HOMEPAGE_RADIOGROUP_BUTTON, RadioGroupTest } from './TestComponents/RadioGroup';
import { HOMEPAGE_SEPARATOR_BUTTON, SeparatorTest } from './TestComponents/Separator';
import { HOMEPAGE_SVG_BUTTON, SvgTest } from './TestComponents/Svg';
Expand Down Expand Up @@ -74,6 +75,11 @@ export const tests: TestDescription[] = [
component: TextTest,
testPage: HOMEPAGE_TEXT_BUTTON,
},
{
name: 'Shimmer Test',
component: ShimmerTest,
testPage: HOMEPAGE_SHIMMER_BUTTON,
},
{
name: 'Theme Test',
component: ThemeTest,
Expand Down
1 change: 0 additions & 1 deletion apps/ios/src/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ use_test_app! do |target|

pod 'FluentUI-React-Native-Apple-Theme', :path => '../../../packages/theming/apple-theme/FluentUIReactNativeAppleTheme.podspec'
pod 'FluentUI-React-Native-Avatar', :path => '../../../packages/experimental/Avatar/FluentUIReactNativeAvatar.podspec'
pod 'FluentUI-React-Native-Shimmer', :path => '../../../packages/components/Shimmer/FluentUIReactNativeShimmer.podspec'
pod 'FluentUI-React-Native-Button', :path => '../../../packages/experimental/NativeButton/FluentUIReactNativeButton.podspec'
pod 'react-native-menu', :path => '../../../node_modules/@react-native-menu/menu'
pod 'RNSVG', :path => '../../../node_modules/react-native-svg'
Expand Down
204 changes: 141 additions & 63 deletions apps/ios/src/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,12 @@ PODS:
- FluentUI-React-Native-Apple-Theme (0.4.2):
- MicrosoftFluentUI (~> 0.2.2)
- React
- FluentUI-React-Native-Avatar (0.6.3):
- FluentUI-React-Native-Avatar (0.7.1):
- MicrosoftFluentUI (~> 0.2.2)
- React
- FluentUI-React-Native-Button (0.5.3):
- MicrosoftFluentUI (~> 0.2.2)
- React
- FluentUI-React-Native-Shimmer (0.6.3):
- MicrosoftFluentUI (~> 0.2.2)
- React
- Folly (2020.01.13.00):
- boost-for-react-native
- DoubleConversion
Expand All @@ -31,62 +28,147 @@ PODS:
- DoubleConversion
- glog
- glog (0.3.5)
- MicrosoftFluentUI (0.2.2):
- MicrosoftFluentUI/AvatarView_mac (= 0.2.2)
- MicrosoftFluentUI/Button_mac (= 0.2.2)
- MicrosoftFluentUI/Calendar_ios (= 0.2.2)
- MicrosoftFluentUI/Card_ios (= 0.2.2)
- MicrosoftFluentUI/CommandBar_ios (= 0.2.2)
- MicrosoftFluentUI/Controls_ios (= 0.2.2)
- MicrosoftFluentUI/Core_ios (= 0.2.2)
- MicrosoftFluentUI/Core_mac (= 0.2.2)
- MicrosoftFluentUI/DatePicker_mac (= 0.2.2)
- MicrosoftFluentUI/Drawer_ios (= 0.2.2)
- MicrosoftFluentUI/HUD_ios (= 0.2.2)
- MicrosoftFluentUI/Link_mac (= 0.2.2)
- MicrosoftFluentUI/Notification_ios (= 0.2.2)
- MicrosoftFluentUI/PillButtonBar_ios (= 0.2.2)
- MicrosoftFluentUI/PopupMenu_ios (= 0.2.2)
- MicrosoftFluentUI/Presenters_ios (= 0.2.2)
- MicrosoftFluentUI/SegmentedControl_ios (= 0.2.2)
- MicrosoftFluentUI/Separator_mac (= 0.2.2)
- MicrosoftFluentUI/Shimmer_ios (= 0.2.2)
- MicrosoftFluentUI/TabBar_ios (= 0.2.2)
- MicrosoftFluentUI/Tooltip_ios (= 0.2.2)
- MicrosoftFluentUI/Utilities_ios (= 0.2.2)
- MicrosoftFluentUI/Calendar_ios (0.2.2):
- MicrosoftFluentUI (0.2.3):
- MicrosoftFluentUI/ActivityIndicator_ios (= 0.2.3)
- MicrosoftFluentUI/ActivityViewAnimating_ios (= 0.2.3)
- MicrosoftFluentUI/Appearance_mac (= 0.2.3)
- MicrosoftFluentUI/Avatar_ios (= 0.2.3)
- MicrosoftFluentUI/AvatarView_mac (= 0.2.3)
- MicrosoftFluentUI/BadgeField_ios (= 0.2.3)
- MicrosoftFluentUI/BarButtonItems_ios (= 0.2.3)
- MicrosoftFluentUI/Button_ios (= 0.2.3)
- MicrosoftFluentUI/Button_mac (= 0.2.3)
- MicrosoftFluentUI/Calendar_ios (= 0.2.3)
- MicrosoftFluentUI/Card_ios (= 0.2.3)
- MicrosoftFluentUI/CommandBar_ios (= 0.2.3)
- MicrosoftFluentUI/Core_ios (= 0.2.3)
- MicrosoftFluentUI/Core_mac (= 0.2.3)
- MicrosoftFluentUI/DatePicker_mac (= 0.2.3)
- MicrosoftFluentUI/DotView_ios (= 0.2.3)
- MicrosoftFluentUI/Drawer_ios (= 0.2.3)
- MicrosoftFluentUI/DynamicColor_mac (= 0.2.3)
- MicrosoftFluentUI/EasyTapButton_ios (= 0.2.3)
- MicrosoftFluentUI/HUD_ios (= 0.2.3)
- MicrosoftFluentUI/IndeterminateProgressBar_ios (= 0.2.3)
- MicrosoftFluentUI/Label_ios (= 0.2.3)
- MicrosoftFluentUI/Link_mac (= 0.2.3)
- MicrosoftFluentUI/Navigation_ios (= 0.2.3)
- MicrosoftFluentUI/Notification_ios (= 0.2.3)
- MicrosoftFluentUI/Obscurable_ios (= 0.2.3)
- MicrosoftFluentUI/OtherCells_ios (= 0.2.3)
- MicrosoftFluentUI/PeoplePicker_ios (= 0.2.3)
- MicrosoftFluentUI/PillButtonBar_ios (= 0.2.3)
- MicrosoftFluentUI/PopupMenu_ios (= 0.2.3)
- MicrosoftFluentUI/Presenters_ios (= 0.2.3)
- MicrosoftFluentUI/ResizingHandleView_ios (= 0.2.3)
- MicrosoftFluentUI/ScrollView_ios (= 0.2.3)
- MicrosoftFluentUI/SegmentedControl_ios (= 0.2.3)
- MicrosoftFluentUI/Separator_ios (= 0.2.3)
- MicrosoftFluentUI/Separator_mac (= 0.2.3)
- MicrosoftFluentUI/Shimmer_ios (= 0.2.3)
- MicrosoftFluentUI/TabBar_ios (= 0.2.3)
- MicrosoftFluentUI/TableView_ios (= 0.2.3)
- MicrosoftFluentUI/Tooltip_ios (= 0.2.3)
- MicrosoftFluentUI/TouchForwardingView_ios (= 0.2.3)
- MicrosoftFluentUI/TwoLineTitleView_ios (= 0.2.3)
- MicrosoftFluentUI/Utilities_ios (= 0.2.3)
- MicrosoftFluentUI/ActivityIndicator_ios (0.2.3):
- MicrosoftFluentUI/ActivityViewAnimating_ios
- MicrosoftFluentUI/ActivityViewAnimating_ios (0.2.3):
- MicrosoftFluentUI/Core_ios
- MicrosoftFluentUI/Avatar_ios (0.2.3):
- MicrosoftFluentUI/Core_ios
- MicrosoftFluentUI/BadgeField_ios (0.2.3):
- MicrosoftFluentUI/Label_ios
- MicrosoftFluentUI/BarButtonItems_ios (0.2.3):
- MicrosoftFluentUI/Core_ios
- MicrosoftFluentUI/Button_ios (0.2.3):
- MicrosoftFluentUI/Core_ios
- MicrosoftFluentUI/Calendar_ios (0.2.3):
- MicrosoftFluentUI/BarButtonItems_ios
- MicrosoftFluentUI/DotView_ios
- MicrosoftFluentUI/Label_ios
- MicrosoftFluentUI/Presenters_ios
- MicrosoftFluentUI/SegmentedControl_ios
- MicrosoftFluentUI/Card_ios (0.2.2):
- MicrosoftFluentUI/Controls_ios
- MicrosoftFluentUI/CommandBar_ios (0.2.2):
- MicrosoftFluentUI/Separator_ios
- MicrosoftFluentUI/TwoLineTitleView_ios
- MicrosoftFluentUI/Card_ios (0.2.3):
- MicrosoftFluentUI/Label_ios
- MicrosoftFluentUI/CommandBar_ios (0.2.3):
- MicrosoftFluentUI/Core_ios
- MicrosoftFluentUI/Core_ios (0.2.3)
- MicrosoftFluentUI/DotView_ios (0.2.3):
- MicrosoftFluentUI/Core_ios
- MicrosoftFluentUI/Controls_ios (0.2.2):
- MicrosoftFluentUI/Drawer_ios (0.2.3):
- MicrosoftFluentUI/Obscurable_ios
- MicrosoftFluentUI/ResizingHandleView_ios
- MicrosoftFluentUI/Separator_ios
- MicrosoftFluentUI/TouchForwardingView_ios
- MicrosoftFluentUI/EasyTapButton_ios (0.2.3):
- MicrosoftFluentUI/Core_ios
- MicrosoftFluentUI/Core_ios (0.2.2)
- MicrosoftFluentUI/Drawer_ios (0.2.2):
- MicrosoftFluentUI/Controls_ios
- MicrosoftFluentUI/HUD_ios (0.2.2):
- MicrosoftFluentUI/Controls_ios
- MicrosoftFluentUI/Notification_ios (0.2.2):
- MicrosoftFluentUI/Controls_ios
- MicrosoftFluentUI/PillButtonBar_ios (0.2.2):
- MicrosoftFluentUI/HUD_ios (0.2.3):
- MicrosoftFluentUI/ActivityIndicator_ios
- MicrosoftFluentUI/Label_ios
- MicrosoftFluentUI/TouchForwardingView_ios
- MicrosoftFluentUI/IndeterminateProgressBar_ios (0.2.3):
- MicrosoftFluentUI/ActivityViewAnimating_ios
- MicrosoftFluentUI/Label_ios (0.2.3):
- MicrosoftFluentUI/Core_ios
- MicrosoftFluentUI/PopupMenu_ios (0.2.2):
- MicrosoftFluentUI/Navigation_ios (0.2.3):
- MicrosoftFluentUI/ActivityIndicator_ios
- MicrosoftFluentUI/Avatar_ios
- MicrosoftFluentUI/Separator_ios
- MicrosoftFluentUI/TwoLineTitleView_ios
- MicrosoftFluentUI/Notification_ios (0.2.3):
- MicrosoftFluentUI/Label_ios
- MicrosoftFluentUI/Obscurable_ios
- MicrosoftFluentUI/Separator_ios
- MicrosoftFluentUI/Obscurable_ios (0.2.3):
- MicrosoftFluentUI/Core_ios
- MicrosoftFluentUI/OtherCells_ios (0.2.3):
- MicrosoftFluentUI/ActivityIndicator_ios
- MicrosoftFluentUI/TableView_ios
- MicrosoftFluentUI/PeoplePicker_ios (0.2.3):
- MicrosoftFluentUI/Avatar_ios
- MicrosoftFluentUI/BadgeField_ios
- MicrosoftFluentUI/OtherCells_ios
- MicrosoftFluentUI/Separator_ios
- MicrosoftFluentUI/PillButtonBar_ios (0.2.3):
- MicrosoftFluentUI/Core_ios
- MicrosoftFluentUI/PopupMenu_ios (0.2.3):
- MicrosoftFluentUI/Drawer_ios
- MicrosoftFluentUI/Presenters_ios (0.2.2):
- MicrosoftFluentUI/Controls_ios
- MicrosoftFluentUI/SegmentedControl_ios (0.2.2):
- MicrosoftFluentUI/Controls_ios
- MicrosoftFluentUI/PillButtonBar_ios
- MicrosoftFluentUI/Shimmer_ios (0.2.2):
- MicrosoftFluentUI/Label_ios
- MicrosoftFluentUI/Separator_ios
- MicrosoftFluentUI/TableView_ios
- MicrosoftFluentUI/Presenters_ios (0.2.3):
- MicrosoftFluentUI/Obscurable_ios
- MicrosoftFluentUI/ResizingHandleView_ios (0.2.3):
- MicrosoftFluentUI/Core_ios
- MicrosoftFluentUI/ScrollView_ios (0.2.3):
- MicrosoftFluentUI/Core_ios
- MicrosoftFluentUI/SegmentedControl_ios (0.2.3):
- MicrosoftFluentUI/Separator_ios
- MicrosoftFluentUI/Separator_ios (0.2.3):
- MicrosoftFluentUI/Core_ios
- MicrosoftFluentUI/Shimmer_ios (0.2.3):
- MicrosoftFluentUI/Core_ios
- MicrosoftFluentUI/Utilities_ios
- MicrosoftFluentUI/TabBar_ios (0.2.2):
- MicrosoftFluentUI/Controls_ios
- MicrosoftFluentUI/Tooltip_ios (0.2.2):
- MicrosoftFluentUI/Controls_ios
- MicrosoftFluentUI/Utilities_ios (0.2.2)
- MicrosoftFluentUI/TabBar_ios (0.2.3):
- MicrosoftFluentUI/Avatar_ios
- MicrosoftFluentUI/Label_ios
- MicrosoftFluentUI/Separator_ios
- MicrosoftFluentUI/TableView_ios (0.2.3):
- MicrosoftFluentUI/Label_ios
- MicrosoftFluentUI/Separator_ios
- MicrosoftFluentUI/Tooltip_ios (0.2.3):
- MicrosoftFluentUI/Label_ios
- MicrosoftFluentUI/TouchForwardingView_ios
- MicrosoftFluentUI/TouchForwardingView_ios (0.2.3):
- MicrosoftFluentUI/Core_ios
- MicrosoftFluentUI/TwoLineTitleView_ios (0.2.3):
- MicrosoftFluentUI/EasyTapButton_ios
- MicrosoftFluentUI/Label_ios
- MicrosoftFluentUI/Utilities_ios (0.2.3)
- QRCodeReader.swift (10.1.0)
- RCTRequired (0.63.4)
- RCTTypeSafety (0.63.4):
Expand Down Expand Up @@ -318,7 +400,7 @@ PODS:
- React-jsi (= 0.63.4)
- ReactTestApp-DevSupport (0.3.13)
- ReactTestApp-Resources (1.0.0-dev)
- RNSVG (12.1.1-0):
- RNSVG (12.1.1):
- React
- SwiftLint (0.43.0)
- Yoga (1.14.0)
Expand All @@ -330,7 +412,6 @@ DEPENDENCIES:
- FluentUI-React-Native-Apple-Theme (from `../../../packages/theming/apple-theme/FluentUIReactNativeAppleTheme.podspec`)
- FluentUI-React-Native-Avatar (from `../../../packages/experimental/Avatar/FluentUIReactNativeAvatar.podspec`)
- FluentUI-React-Native-Button (from `../../../packages/experimental/NativeButton/FluentUIReactNativeButton.podspec`)
- FluentUI-React-Native-Shimmer (from `../../../packages/components/Shimmer/FluentUIReactNativeShimmer.podspec`)
- Folly (from `../../../node_modules/react-native/third-party-podspecs/Folly.podspec`)
- glog (from `../../../node_modules/react-native/third-party-podspecs/glog.podspec`)
- QRCodeReader.swift
Expand Down Expand Up @@ -383,8 +464,6 @@ EXTERNAL SOURCES:
:path: "../../../packages/experimental/Avatar/FluentUIReactNativeAvatar.podspec"
FluentUI-React-Native-Button:
:path: "../../../packages/experimental/NativeButton/FluentUIReactNativeButton.podspec"
FluentUI-React-Native-Shimmer:
:path: "../../../packages/components/Shimmer/FluentUIReactNativeShimmer.podspec"
Folly:
:podspec: "../../../node_modules/react-native/third-party-podspecs/Folly.podspec"
glog:
Expand Down Expand Up @@ -442,16 +521,15 @@ EXTERNAL SOURCES:

SPEC CHECKSUMS:
boost-for-react-native: 39c7adb57c4e60d6c5479dd8623128eb5b3f0f2c
DoubleConversion: 5805e889d232975c086db112ece9ed034df7a0b2
DoubleConversion: cde416483dac037923206447da6e1454df403714
FBLazyVector: 3bb422f41b18121b71783a905c10e58606f7dc3e
FBReactNativeSpec: f2c97f2529dd79c083355182cc158c9f98f4bd6e
FluentUI-React-Native-Apple-Theme: 5096ba1ccdce75cac6af8dfb6f43880828d6a8e1
FluentUI-React-Native-Avatar: 1a463d15fe9cef99c18dcec0516ebd5459fe2e25
FluentUI-React-Native-Avatar: 20e879a5477bf6a32510796d139d699dad5f7f5f
FluentUI-React-Native-Button: b882911504fd4b8ad21b6391b6fb49d908276f5e
FluentUI-React-Native-Shimmer: 73e604318cff67e942b04ac6b7f3908ce4fa6b38
Folly: b73c3869541e86821df3c387eb0af5f65addfab4
glog: 1f3da668190260b06b429bb211bfbee5cd790c28
MicrosoftFluentUI: 8a1ef14a8479106c33822d05b774e04051bb33f2
glog: 40a13f7840415b9a77023fbcae0f1e6f43192af3
MicrosoftFluentUI: 416cab05ebcf05dcaea0a1babc4de2ba69928026
QRCodeReader.swift: 373a389fe9a22d513c879a32a6f647c58f4ef572
RCTRequired: 082f10cd3f905d6c124597fd1c14f6f2655ff65e
RCTTypeSafety: 8c9c544ecbf20337d069e4ae7fd9a377aadf504b
Expand All @@ -476,10 +554,10 @@ SPEC CHECKSUMS:
ReactCommon: 73d79c7039f473b76db6ff7c6b159c478acbbb3b
ReactTestApp-DevSupport: 12d9f285a44ff0cb7962a213621f87d3e6de9288
ReactTestApp-Resources: 5950ae44720217c6778ff03fb1d906c8fb3ce483
RNSVG: 1a8855adeb20c5beb0a808281608315fc1092d15
RNSVG: 551acb6562324b1d52a4e0758f7ca0ec234e278f
SwiftLint: 0c645fdc6feed3e390c1701ab3cc669f88b42752
Yoga: 4bd86afe9883422a7c4028c00e34790f560923d6

PODFILE CHECKSUM: ef19e12dd10aa6a43e8b448486be35e9c6396e28
PODFILE CHECKSUM: 94ab61973ec6b63575edbb7ea6de57d5f0fb622c

COCOAPODS: 1.10.1
Loading