Skip to main content

Β· One min read
Arpit Bhalla
RNE Core Team
React Native Elements v4 introduces many features including few new components, fully typescript support and some breaking changes whose migration is being given below.

Migration Guide​

Refer the migration guide to migrate from v3 to v4.

Β· 4 min read
Arpit Bhalla

πŸ“‘ Project Details​

πŸš€ Overview​

The Google Summer of Code 2021 has been a fantastic and cheerful learning experience for me over the past few months. I have learned a lot from the community, especially how to organize commits and write readable code. React Native Elements is an amazing community to work with, as mentors are really helpful and experienced. I had started contributing to React Native Elements from March 2021 and till now, I have 40+ commits (10,803 additions and 13,826 deletions) merged. Over the past few months, I had great exposure writing maintainable code, communicating with the mentors, etc. I had completed some of my work in the coding period started as some issues mentioned in my proposal had a high priority for the release.

🚘 Work Abstract​

Refactor components to use Pressable API (#3170)​

Pressable is preferred to Touchable components according to React Native official docs. Pressable component offers a more extensive and future-proof way of handling the touch-based inputs.

  • Touchable Component:

    • It includes the styles and effects that do not meet the platform interactions.
    • It does not support high-quality interaction experience on different platforms.
  • Pressable Component:

    • It detects various types of interactions.
    • Its API provides direct access to the current state of interaction.
    • Its capabilities could be extended to include hover, blur, focus, and more. Pressable contains a lot of new props and cool features such as: delayLongPress: Duration in milliseconds from onPressIn by the time onLongPress is called.

Reference : Pressable vs. Touchable in React Native

Migrate Tests to React Native Testing Library (#3170)​

Rather than tests focusing on the implementation (Enzyme), tests are more focused on user behavior (react-native-testing-library).

Enzyme allows us to access the internal workings of your components. You can read and set the state, and we can mock children to make tests run faster. On the other hand, RN testing-library doesn't give us any access to the implementation details. It renders the components and provides utility methods to interact with them. The idea is that you should communicate with our application in the same way a user would. So rather than set the state of a component we reproduce the actions a user would do to reach that state.

Class to Functions Migration​

Some components like Image, ToolTip which further include SearchBar android & SearchBar iOS were Class Components and the code was messy, These are migrated to Functional Components and added hooks like, useState, useEffect, useCallBack, which would increase performance.

  • Using classes - We need to describe lifecycle methods, state of the component, component’s methods that will change our state or work with the store. Also, we need to bind all the methods for the component instance. The component becomes large, and it becomes more difficult to read each time.
  • Using hooks - We can get the state of the component so that it can be easily tested and reused. Now we can facilitate the exchange of links between components or our entire application - using hooks. Hooks allow you to encapsulate logic without affecting the hierarchy of components.

🎊 My Contributions​

You can find all my contributions here

New components​

Core Improvements​

Documentation redesigned (#3108)​

Snack player​

It helps user to test the component from documentation

VS Code extension​

Auto imports components and auto complete syntax with component preview for React Native Elements.

🚧 What's next?​

New Stack Component​

Stack is concerned with one-dimensional layouts. This is not yet in the priority but it would help developers.

Example

<Stack spacing={2}>
<Item>Item 1</Item>
<Item>Item 2</Item>
<Item>Item 3</Item>
</Stack>

Β· 4 min read
google-summer-of-code

Automatically generate documentation out of React/React Native Component

This summer, I was pleased to get selected for Google Summer of Code'21 under the organization React Native Elements. Working under the organization, my project was to generate documentation automatically out of the UI components and present it in the Docusaurus website.

enter image description here

The purpose of creating this repository is to maintain a report summary of my GSoC work and this may also serve as a guide for future GSoC aspirants and a reference to the developers and contributors to the project.

πŸ“™ Abstract​

React Native Elements is a cross-platform UI toolkit built on/for React Native. With a weekly download by 90k+ users and backed by a huge community, it provides UI components that can be used in your native application for the platform of Android/iOS/Web.

The documentation of the project was maintained manually previously i.e., suppose I want to change/add/remove a prop or a new component to the project the markdown file had to be changed manually. The process is tiring and new contributors may often forget to do so. So, during the summers I took the change this process and make a workflow such that the generation is automatic. This should be fast and maintainable.

πŸ“ Deliverables​

The deliverables of the project are as follows:

  • Efficient Development Setup
  • Re-structure and Refactor code to have a common pattern.
  • Maintain the Usage/Examples of the component as they are needed to be updated manually.
  • Refactor and rename the directory structure such that Autogen is successful.
    • Convert the code-base to have all the functional components.
  • Commenting on all the components and props.
    • Adding descriptions.
    • Adding prop descriptions.
    • Ensuring a common pattern is followed.
  • Writing scripts to extract data out(in JS/TS) of it in the form of JSON.
  • Converting the JSON data to Markdown.
  • Automating the process such that the workflow works automatically whenever there is a change in the prop/definition or component code.

All of the listed deliverables were completed within the GSoC period. πŸŽ‰

πŸ“¦ Working product​

The work can be found here - Official Website of React native elements. Please refer to the component docs.

I have also written a blog on how it works attached here.

πŸš€ Contributions​

Pull requests​

PR LinkDescriptionStatus
#3071[Refactor] Documentation directory structureMerged βœ…
#3081[Refactor] Directory structure of componentsMerged βœ…
#3112[Add] props description, descriptions to the component.Merged βœ…
#3126[Docs] Added demos and snack for the documentationMerged βœ…
#3136[Add] Docgen auto generation of docs scriptsMerged βœ…
#3142[Docs] Added generate-markdown scriptsMerged βœ…
#3143, #3144[Fix] Issues related to auto-generation of documentationMerged βœ…
#3145[Fix, Improve] Doc-gen issues and automationOpen(to be merged) πŸ•’

Issues​

Issue linkDescription
#3171[Docs] Auto-generation of documentation for class based components

Apart from these contributions, I have contributed to other React native elements projects. They can be summarized as:

ProjectReference
React Native Elements - main repoPull requests
React Native Elements AppPull requests
PlaygroundPull requests

πŸ‘¨ Mentors​

I would like to thank my mentors for helping me reach this milestone. πŸ˜„πŸ˜„

I have not only learned about the Open Source culture and how to write good code but also, learned how the industry works and the import

I would also like to thank Arpit Bhalla for being an amazing partner in this amazing journey.

Β· 4 min read

This is a guide to generate documentation of the UI components automatically.

Initially when this workflow was not present, the entire documentation of the website was done by editing the docs manually by going to the docs directory under website and editing the markdown manually. Now, we have come with a flow where developers and contributors can focus more on logic than on writing markdown.

Workflow​

To do this we have created scripts which would parse the components and generate documentation out of it.

This is a 2 step process:

  1. We take use of react-docgen-typescript which takes the input of the files for which we want to generate the documentation automatically. This gives in JSON as output. This JSON consists of all the details of the props including type, name, description and defaultValue and well as description of the components.

  2. As we use Docusaurus for our documentation website, the pages of the documentation should be in the format of Markdown. Therefore, there should be process where we can change the JSON data, which we get from react-docgen-typescript to a suitable Markdown format. For this we use, json2md which takes in the data and convert it to suitable markdown string. This is stored in the directory and is shown on the website.

How does this work​

Well to make the script to work automatically what we have done is as follows:

  1. When you push your changes to your branch. A script updateDocumentation.js runs.

  2. This invokes the yarn docs-build command which calls the scripts of auto-generation of docs and this also lints the markdown files generated at the same time.

  3. Now, if there is any changes in the markdown files. A commit with message Update Documentation is done and pushed after your commit is done to the branch.

Note: By passing pre-push hook will result in failure of documentation update and may lead maintainers to close your PR.

Updating existing components​

This is simple. Adding, removing, updating the props is also simple now. You just need to update the comments/description of the component and deal with the logic of your React Components(if required). Our workflow will automatically detect the markdown changes if any and push the changes using pre-push hooks while you push your code to your branch.

Adding new components​

Trust me this is easy. We have designed the workflow such that, you only need to work on your JavaScript/TypeScript logic, without bothering about updating the markdown files. The input to the docgenParser is automatic and doesn't require any aditional cofiguration.

Make sure to add appropriate comments and description related to the components and the props of the component. Try keeping your code simple with simpler types for Autogen to work.

Please note: The file name of the component as well as the folder must be in Capital letter. We use regex to parse the file paths, so this is important.

Note: If there are complex types/defaultValue, please head to website/scripts/docgen/docgenParser.ts to deal with those cases. Although we recommend you to avoid it as far as possible. Try improving the React logic and that will work.

How to add a new demo for the component?​

The demos can now be added by moving in to the usage directory under website/docs/main directory. We now have added Snack Player so that you get the glimpse of the component and also get to know how it works. Under the usage, there is a separate folder for each UI Component, where you can add Usage related to component and relevant descriptions.

Note: To add Snack demo, add it inside the snack directory. You can add as many Snack which will make our repository more helpful for developers.

Testing the changes​

For testing the changes in the documentation autogeneration, we simply need to run the following commands in sequence.

cd website
yarn test

We have also included the changes in the main test process, so this will automatically run with the workflow as well as when you run the yarn test command from root of the project.

Future​

Some of the components are class-based. They are: Input, SearchBar, Rating.(from https://github.com/Monte9/react-native-ratings). If you change the components to Functional/hooks based please remove it from the array of filesToExclude under website/scripts/docgen/getComponentFiles.ts. These are the paths of the component files for which the process is still manual.

So, generating the documentation doesn't come up well for these components. Due to the existing structure react-docgen-typescript fails to generate relevant result for them. We are therefore looking for contributions on these components to make them Fuctional/Hooks based.

Thanks. Hope you like the new workflow. Looking forward for improvements and contributions to it.

Β· 4 min read

There have been a lot of changes and improvements coming through the pipeline recently with react-native-elements. So in preparing for a version 3, there are some planned deprecations that will be added into version 2.3 and then removed in version 3.

The reason for these changes is that react-native-elements regularly gets requests for new features and enhancements quite frequently. The fast and easy method of adding these new features is usually to add another prop into the component that then injects some change into a child component. Unfortunately, this ends up leading to the components having a lot of props, lots of conditional code, and additional code complexity. The solution going forward and into version 3 will be to break down large components into smaller pieces so that it is easier to inject your own code without having to wait for an additional prop to be added.

As we continue to build up to version 3, this post will continue to be updated with new step-by-step directions on how to upgrade your code to work around these changes. The RNE team thanks you for your patience, and we hope that you see the value in the upcoming changes.

Avatar​

accessory, showAccessory, and accessoryProps are all being dprecated. There is now a child component Avatar.Accessory that you insert as a child component instead.

<Avatar>
<Avatar.Accessory {...accessoryProps} />
</Avatar>

ListItem​

ListItem has a large number of deprecated props. ListItem has been somewhat of a kitchen sink. All the props can be replaced by inserting them as children in the order of left to right as they appear on the screen.

leftElement, leftIcon, leftAvatar, rightElement, rightIcon, rightAvatar​

These can be replaced by using Text, Icon, and Avatar components respectively.

title, titleStyle, titleProps, subtitle, subtitleProps, subtitleStyle​

These props can be replaced by ListItem.Content, ListItem.Title and ListItem.Subtitle

<ListItem>
<ListItem.Content>
<ListItem.Title style={titleStyle} {...titleProps}>
{title}
</ListItem.Title>
</ListItem.Content>
</ListItem>

contentContainerStyle, rightContentContainerStyle​

These props should be placed in the style prop of ListItem.Content.

rightTitle, rightTitleStyle, rightTitleProps, rightSubtitle, rightSubtitleStyle, rightSubtitleProps​

These props also use ListItem.Content, ListItem.Title, and ListItem.Subtitle. Simply add the prop right to each one.

<ListItem>
<ListItem.Content right>
<ListItem.Title right style={titleStyle} {...titleProps}>
{title}
</ListItem.Title>
</ListItem.Content>
</ListItem>

input, buttonGroup, switchProps, checkBox, badge, chevron, checkmark​

The input prop can be replaced with ListItem.Input.

The buttonGroup prop can be replaced with ListItem.ButtonGroup.

The switchProps prop can be replaced with react-native's Switch.

The checkBox prop can be replaced with ListItem.CheckBox.

The badge prop can be replaced with Badge.

The chevron prop can be replaced with ListItem.Chevron.

The checkmark prop can be replaced with :

<Icon name="check" size={20} />

Card​

For Card the following props have all been deprecated: title, titleStyle, titleNumberOfLines, dividerStyle, image, imageStyle, imageProps, imageWrapperStyle, featuredTitle, featuredTitleStyle, featuredSubtitle, featuredSubtitleStyle

title, titleStyle, titleNumberOfLines​

Move these props into Card.Title

<Card>
<Card.Title style={titleStyle} numberOfLines={titleNumberOfLines}>
{title}
</Card.Title>
</Card>

dividerStyle​

The divider and the dividerStyle itself were moved into Card.Divider

image, imageStyle, imageProps, imageWrapperStyle​

These can be replaced with Card.Image which accepts all Image props. imageWrapperStyle can be attached to a View that wraps the Image

featuredTitle, featuredTitleStyle, featuredSubtitle, featuredSubtitleStyle​

These were both replaced with Card.FeaturedTitle and Card.FeaturedSubtitle

BottomSheet​

BottomSheet was added in version 2.2, and it was noted that it had some strict dependencies that weren't so well liked. So BottomSheet has changed completely and it is encouraged that you checkout the docs page on it again.

Dark Mode​

Make sure to checkout the customization page. We added a dark mode configuration to the ThemeProvider that should help out in bootstrapping your app's dark mode.

Β· 8 min read

React Native Elements has UI elements that are easy to use & really customizable. It also has theming, platform specific search bars, React Native Web support, and much more.

It's finally here! Let's put our hands together and welcome React Native Elements 1.0 πŸŽ‰

This release is centered around making RNE components that everyone loves more intuitive to use & stable. This is not to say that all the work is done, but this is definitely a giant leap in the right direction and one that we have been working on for over a year.

I want like to say thank you to our users for using RNE and giving us feedback through issues on the repo and also the contributors who have the taken time to contribute and help improve RNE together. Finally, I'd like to say a big thanks to Kyle Roach and Xavier VillelΓ©gier without whom this project would not have been as awesome as it is today!!

This blog post is meant to serve as a migration guide for upgrading to react-native-elements: "^1.0.0" from 0.19.1 and also a way to document and share all the breaking changes, new features and other improvements in this release. For those updating from 1.0.0-beta7 you can view those release notes here.

The wait is over!! Get excited, cause we certainly are. 14K 🌟 and counting...

Installation​

First, install the library using your favorite package manager: yarn add react-native-elements

Also if you are using an older version, just update the react-native-elements version in package.json to ^1.0.0

Breaking changes​

  • Updated all components that have the component prop to Component prop as per convention (#1479)

  • Some colors have been removed from the colors file and some changed. Here's the list of colors from 0.19.1.

{
primary: '#9E9E9E',
primary1: '#4d86f7',
primary2: '#6296f9',
secondary: '#8F0CE8',
secondary2: '#00B233',
secondary3: '#00FF48',
grey0: '#393e42',
grey1: '#43484d',
grey2: '#5e6977',
grey3: '#86939e',
grey4: '#bdc6cf',
grey5: '#e1e8ee',
dkGreyBg: '#232323',
greyOutline: '#bbb',
searchBg: '#303337',
disabled: '#dadee0',
white: '#ffffff',
error: '#ff190c',
};

Avatar​

  • Props small, medium, large, xlarge have been removed. Usage is now size="small" etc. #1098

Badge​

  • wrapperStyle prop has been removed - use containerStyle prop instead (#1545)
  • badgeStyle prop replaces previous behaviour of containerStyle prop (#1545)
  • element prop which was undocumented is removed - use value prop instead (#1545)
  • can no longer render children - instead use value prop which now supports rendering react components (#1545)

Button​

  • By default on Android there's no more elevation (#1538). To get elevation, use the raised prop.
  • Renamed textStyle to titleStyle
  • Renamed containerViewStyle to containerStyle
  • Removed props transparent and outline (#1540). Instead use the type prop.
// Transparent
<Button type="clear" />

// Outline
<Button type="outline" />
  • Removed props secondary, secondary2, secondary3, primary1, primary2, backgroundColor. Use the buttonStyle prop to set the background color.
  • Removed iconComponent prop. If you want to use a different Icon component - the icon prop supports custom elements.
  • Removed loadingRight prop. Loading indicator displays without title. May re-add in future.
  • Removed borderRadius prop. To control the border radius use the buttonStyle prop.
  • Removed props color, fontSize, fontWeight, and fontFamily. Instead use the titleStyle prop to set attributes for the title.
  • Removed large prop. May re-add in future.

ButtonGroup​

  • disableSelected prop has been removed (#1587)

Card​

  • fontFamily prop is deprecated - instead use titleStyle prop (#1659)
  • flexDirection prop is deprecated - instead use wrapperStyle prop (#1659)

Form​

  • FormInput been renamed to Input (#497)

    • clearText method renamed to clear
    • textInputRef and containerRef props removed
    • normalizeFontSize prop removed. You can use the normalize helper along with the inputStyle prop to normalize font sizes.
  • FormLabel has been removed. This is now built into the Input component by use of label prop. Props labelStyle and labelProps can be used to customize it.

  • FormValidationMessage has been removed. This is now built into the Input component by use of errorMessage prop. Props errorStyle and errorProps can be used to customize it.

  • Props innerContainerStyles, outerContainerStyles removed #1221. Instead use the containerStyle prop for main styling, along with props leftContainerStyle, centerContainerStyle, and rightContainerStyle when needed.

SearchBar now supports different platform styles! To get an iOS or Android themed SearchBar, use the platform prop. platform="ios" or platform="android"

  • noIcon prop removed. Instead to remove the search icon use the searchIcon prop. E.g searchIcon={null}
  • showLoadingIcon prop renamed to showLoading #837
  • containerRef prop removed

List​

  • List component has been removed! List was just a regular React Native View with some small margin styles. It wasn't actually needed to use the ListItem component. Instead we recommend using the FlatList or SectionList components from React Native which function both as Views and also displaying items, pull to refresh and more.
  • If you want to apply the same styles that the List component provided prior to 1.0, see this comment.

ListItem​

  • leftIconOnPress, leftIconOnLongPress, leftIconUnderlayColor, and leftIconContainerStyle, removed. The leftIcon prop can accept props.
<ListItem
title="Yea"
leftIcon={{ name: 'home', onPress: () => alert('hello') }}
/>
  • avatar, avatarStyle, avatarContainerStyle, roundAvatar, and avatarOverlayContainerStyle removed. Avatars can now be customized using the rightAvatar and leftAvatar props which can either render a custom element or an object that describes the props from Avatar.
<ListItem
leftAvatar={{
title: 'MD',
rounded: false,
containerStyle: { margin: 5 },
onPress: () => alert('hey'),
}}
rightAvatar={{ title: 'DW', onLongPress: () => alert('hey') }}
/>
  • wrapperStyle prop removed. Use the containerStyle prop instead.
  • titleNumberOfLines, subtitleNumberOfLines, and rightTitleNumberOfLines props removed. Use the titleProps, rightTitleProps, and subtitleProps props to pass props for each..
<ListItem titleProps={{ numberOfLines: 4 }} />
  • hideChevron removed. Use the chevron prop instead. However, the behaviour is swapped hideChevron={true} behaves like chevron={false}
  • chevronColor removed. The chevron prop now can accept an object describing it's appearance.
<ListItem chevron={{ color: 'pink' }} />
  • fontFamily removed. Use the titleStyle and subTitleStyle props to set change the text styling
  • titleContainerStyle removed. Use the titleStyle prop instead.
  • rightTitleContainerStyle removed. Use the rightTitleStyle prop instead.
  • subtitleContainerStyle removed. Use the subtitleStyle prop instead.
  • label prop removed.
  • switchButton, onSwitch, switchDisabled, switchOnTintColor, switchThumbTintColor, switchTintColor, and switched removed. Instead use the switch prop wich accepts an object describing its props.
  • textInput,textInputAutoCapitalize,textInputAutoCorrect,textInputAutoFocus,textInputEditable,textInputKeyboardType,textInputMaxLength,textInputMultiline,textInputOnChangeText,textInputOnFocus,textInputOnBlur,textInputSelectTextOnFocus,textInputReturnKeyType,textInputValue,textInputSecure,textInputStyle,textInputContainerStyle,textInputPlaceholder removed. We now expose a single input prop which accepts an object describing its props.
  • onPressRightIcon removed. Use the rightIcon prop which can accept an object now describing its props.
<ListItem rightIcon={{ name: 'home', onPress: () => console.log('clicked') }} />

PricingCard​

  • titleFont removed. Use the titleStyle prop instead to customize the title. #1231
  • pricingFont removed. Use the pricingStyle prop instead to customize the price. #1231
  • infoFont removed. Use the infoStyle prop instead to customize the info. #1231
  • buttonFont removed. Use the button prop with a buttonStyle key to set this.
<PricingCard button={{ buttonStyle: { fontFamily: 'Arial' } }} />

Text​

  • fontFamily prop is removed - instead use style prop (#1659)

New features​

  • Support for React Native Web - read more on it here (#1664)
  • Theming support across components - easily build light & dark modes and theme your components from one place (#1454)
  • New <Image /> Component - displays images with a placeholder and smooth image load transitioning (#1582)
  • New <Input /> Component - a branch new and improved replacement for <FormInput /> (#497)
  • New withBadge HOC allows you to easily add badges to icons and other components (#1604)
  • New "mini badge" with the <Badge /> component - Perfect for status indicators and notifications #1545
  • New Tap Rating <AirbnbRating /> component - powered by react-native-ratings (#1671)
  • Platform-specific <SearchBar /> component - drop-in usage with native look and feel (#837)
  • <Slider /> Component - supports vertical orientation (#1698)
  • Button types! Easily have solid, clear, and outline buttons with one prop. (#1540)
  • Background image support in the <Header /> (#1556)
  • Add support for AntDesign icons (#1529)

Assorted fixes & improvements​

  • Updated react-native-vector-icons peerDependency to >4.2.0
  • Expose helpers methods that are used internally
  • Close to 100% types coverage
  • Docs
    • Add descriptions for every Component (#1527)
    • Add central place to show supported icon sets (#1532)
    • Added Showcase section to display apps using RNE (#1704)

Ecosystem and web support​

Independent Projects​

Web Support​

Lastly, here is the RNE v1 release in numbers:

  • 470 commits (with over 272 PR's)
  • 371 files changes (52,920 additions and 32,737 deletions)
  • Over 80 contributors
  • Over \$1500 awarded to contributors

Thanks for reading! Feel free to share this post if you enjoyed reading it.

If you run into any trouble using RNE, please open a new issue here. Also if you want to support us, you can contribute to our Open Collective here.

Β· 12 min read

Comprehensive Guide to create simple app using React Native Web and React NativeΒ Elements

Case study: gitphone, GitHub repository checker for your smartphone.

ToC​

  • Initialize the project using CRNWA
  • Make sure everything works: Android, iOS and Web
  • Add RNE latest ( 1.0.0-beta7 ) to the project
  • Add 2 screens

Screen 1 RNE components:

  1. Input
  2. Button with Icon

Screen 2 RNE components:

  1. Header
  2. ListItem
  3. Avatar
  4. Text

gitphone should have:

0️⃣ InitialΒ Step​

Install create-react-native-web-app

$ npm i -g create-react-native-web-app

1️⃣ FirstΒ Step​

Create gitphone project.

Ξ» create-react-native-web-app gitphone

⏳ Creating React Native Web App by the name of gitphone ...

βœ… Created project folder.

βœ… Added project files.

⏳ Installing project dependencies...

yarn install v1.10.1
[1/4] Resolving packages...
[2/4] Fetching packages...
info fsevents@1.2.4: The platform "win32" is incompatible with this module.
info "fsevents@1.2.4" is an optional dependency and failed compatibility check. Excluding it from installation.
[3/4] Linking dependencies...
[4/4] Building fresh packages...
success Saved lockfile.
Done in 797.66s.

βœ… Installed project dependencies.

βœ… Done! πŸ˜πŸ‘ Your project is ready for development.

* change directory to your new project
$ cd gitphone

$ Then run the these commands to get started:

* To run development Web server
$ yarn web

* To run Android on connected device (after installing Android Debug Bridge "adb" - https://developer.android.com/studio/releases/platform-tools)
$ yarn android

* To run ios simulator (after installing Xcode - only on Apple devices)
$ yarn ios

* To run tests for Native and Web
$ yarn test

* To run build for Web
$ yarn build

Change to gitphone directory and test the web app by running yarn web.

Starting the development server...
Compiled successfully!
You can now view create-react-native-web-app in the browser.
Local: http://localhost:3001/
On Your Network: http://172.26.235.145:3001/
Note that the development build is not optimized.
To create a production build, use yarn build.

Now, test the gitphone android app by running yarn android.

Installing APK 'app-debug.apk' on 'Redmi 4X - 7.1.2' for app:debug
Installed on 1 device.

BUILD SUCCESSFUL

Total time: 21.783 secs

Starting: Intent { cmp=com.creaternwapp/.MainActivity }
✨ Done in 25.64s.

If the build successful, you'll see the app installed on your Android (emulator) device.

But if you got an error when run yarn android, please see Troubleshooting section below.

The last part for First Step, make sure it can be run on iOS without any problem. Run yarn ios and voila!

2️⃣ StepΒ Two​

Installing React Native Elements (RNE).

$ yarn add react-native-elements@beta

Installing React Native Vector Icons (RNVI).

$ yarn add react-native-vector-icons

Linking:

$ react-native link react-native-vector-icons

Both RNE and RNVI are written using es6. If you run yarn web at this point, you'll got an error.

./node_modules/react-native-elements/src/config/withTheme.js
Module parse failed: Unexpected token (12:28)
You may need an appropriate loader to handle this file type.

We need to tell webpack to transpile them.

  1. Open config/webpack.config.dev.js
  2. On line 141 Process JS with babel, add RNE and RNVI to include
  3. Do the same for config/webpack.config.prod.js as well πŸ‘Œ

If you get lost, see this gist or commit 8c0e603.

3️⃣ Give it aΒ try​

Now, let's grasp the idea how RNE works.

  1. Open src/App.js

  2. Import Button from RNE

    import { Button } from 'react-native-elements';
  3. On render, change TouchableHighlight to use RNE's Button

  4. Run yarn ios, yarn android and yarn web to see it in action! πŸ‘

Note: If you got an error Could not find com.android.tools.build.appt2 when running yarn android, add google on the gradle repositories.

See this gist or commit for the details: a2ebba1.

4️⃣ Add Home component​

Our first component will be Home. On this component, there are two input fields and one Submit button.

  1. Inside src, create new folder: Components
  2. Add new file called Home.js gist
  3. On App.js, import Home component gist
  4. Run yarn ios, yarn android and yarn web to see it in action! πŸŽ‡

Styling for Home component​

You should notice that our Home doesn’t look good in term of UI. Let’s add styling for it.

  1. Inside Components, create Shared.style.js file gist
  2. Import the style and update Home component as below gist
  3. Looks better now*, commit for adding Home component: 2e510c4.

Wait a minute… *Seems there is a problem with RNVI on the web version. You can check this Web (with webpack) article or just following steps bellow.

  1. Open config/webpack.config.dev.js
  2. Add url-loader on line 162 gist
  3. Do the same for config/webpack.config.prod.js as well πŸ‘Œ
  4. Open src/index.js file
  5. Add iconFont and append style to document’s head gist

Our RNE x RNW progress so far~Our RNE x RNW progress so far~

5️⃣ Routing​

Next, let’s add second component: CommitList.

  1. Create new folder inside Components named Commit
  2. Add new file: CommitList.js gist

On our app, user goes to second screen by click on Submit button. How do we implement it?

β€œreact-router comes to the rescue” - https://reacttraining.com/react-router/

Add react-router-dom and react-router-native

$ yarn add react-router-dom react-router-native

Web needs BrowserRouter while native NativeRouter. We need to separate it based on the platform.

  1. On src, create Utils folder
  2. Add two files on Utils: Routing.native.js and Routing.web.js gist

Those file’s content differ only on the second line. gist

Now, glue it together.

  1. Open App.js, import CommitList component

  2. Import Route, Router and Switch from Utils/Routing

  3. Implement routing inside render method gist

  4. Now for the action on Submit button, open Home.js

  5. Import withRouter from Utils/Routing

    import { withRouter } from '../Utils/Routing';
  6. WithRouter is an HOC. Use it to wrap Home component

    export default withRouter(Home);
  7. Add onPress property for the button

    onPress={this.onPressButton}
  8. Implement the onPressButton event handler

    onPressButton = () => this.props.history.push('/commit');
  9. All Home together gist | commit

Test it on web and android, you should be able to go back and forth between screens using Submit and pressing Back button.

β€œHow can I go back on iOS?” πŸ˜‚

Implement withHeader​

We will create a withHeader HOC. Why HOC? We can reuse it easier if we add more screens later.

  1. On src, create HOCs folder

  2. Add withHeader.js file

  3. Import Header from RNE and Icon from RNVI/FontAwesome

    import { Header } from 'react-native-elements';
    import Icon from 'react-native-vector-icons/FontAwesome';
  4. withHeader accepts one prop: title

    const withHeader = ({ title = '' }) => (WrappedComponent) => {
  5. Event handler to go back / go home

    goBack = () => this.props.history.goBack();

    goHome = () => this.props.history.replace('/');
  6. Import and use withHeader in CommitList component gist | commit

6️⃣ Fetch data from GitHub API​

Let’s fetch a real-live data: list commit on repository by GitHub and render it on our second screen, CommitList.

GET /repos/:owner/:repo/commits

Ideally, the :owner and :repo are form values from our first screen. Since the objective of this article is RNE x RNW, talk about that form (and state-management) later on.

To fetch GitHub API, we will use fetch-hoc package and also need compose from redux, to handle multiple HOCs on the same component.

$ yarn add fetch-hoc redux
  1. Open CommitList.js

  2. Import { compose } from redux and fetch from fetch-hoc

  3. Use it as below gist | commit

Now run yarn web, open network tab of DevTools and click Submit button, you’ll see bunch of commit data. By default GitHub API returning 30 commits.

Render commit data​

Commit data that will be displayed on the screen:

author.avatar_url

commit:
author.name
message

Let’s modify CommitList.js

  1. Add new imports

    import { ActivityIndicator, Dimensions, FlatList, Platform, View } from 'react-native';
    import { Avatar, ListItem } from 'react-native-elements';
  2. On main render, modify it as below

    <View style={styles.container}>
    {this.renderContent()}
    </View>
  3. Create renderContent method

    renderContent = () => (
    this.props.loading ?
    <ActivityIndicator color='#87ceeb' /> :
    <FlatList
    keyExtractor={this.keyExtractor}
    data={this.props.data}
    renderItem={this.renderItem}
    />
    )
  4. Create renderItem method

    renderItem = ({ item }) => (
    <ListItem
    title={item.commit.author.name}
    subtitle={item.commit.message}
    leftElement={this.renderLeftElement(item)
    />
    )
  5. Create renderLeftElement method

    renderLeftElement = (item) => (
    <View>
    <Avatar
    source={{ uri: item.author.avatar_url }}
    size='medium'
    rounded
    />
    </View>
    )
  6. Here is our new CommitList including the styling to make it prettier gist | commit

Here they are!

awesome, eh?awesome, eh?

7️⃣ Handle form submission​

Our app looks great so far. But we are not passing values from first to second screen. Let’s do it.

  1. To handle form, we’ll use formik

    $ yarn add formik
  2. Open Home.js and import it

    import { Formik } from 'formik';
  3. Wrap main View with formik

    <Formik initialValues={{ owner: '', repo: '' }}
    onSubmit={this.onPressButton}>
    {({ handleChange, handleSubmit, values }) => (
    <View style={styles.container}>
  4. Add onChangeText handler to the Input

    <Input ... onChangeText={handleChange('owner')} value={values.owner}
    <Input ... onChangeText={handleChange('repo')} value={values.repo}
  5. Change Button onPress props to handleSubmit

    <Button ... onPress={handleSubmit}
  6. Don’t forget to close the main View

        </View>
    )}
    </Formik>

Form submission: done πŸ‘Œ Next question: How do we pass these values to second screen? Send them when we redirect to second screen!

  1. Inside onPressButton method, send an object instead of pathname only.

    this.props.history.push({
    pathname: '/commit',
    state: { owner, repo }
    });
  2. Open CommitList, import withRouter

    import { withRouter } from '../../Utils/Routing';
  3. Add withRouter inside compose

  4. Get the values passed down to withRouter and use it to fetch

    withHeader({ title: 'Commits' }),
    withRouter,
    fetch(({ location: { state = {} } }) => (
    `https://api.github.com/repos/${state.owner}/${state.repo}/commits`
    ))

HOC’s order does matter. So, make sure it the same as snippet above. In case you lost, here is the commit: 1d83c5e.

Test the app. Now we should able to fetch any GitHub repository, with some caveats. πŸ‘€

8️⃣ Polishing the app​

What happens if we fetch repository which doesn’t exist? Red screen on native, blank screen on web! 😹

fetch-hoc returns an error if it has. Let’s use it.

  1. On CommitList, modify renderContent

    this.props.loading ?
    <ActivityIndicator color='#87ceeb' /> :
    this.renderFlatList()
  2. Import Text from RNE

    import { ..., Text } from 'react-native-elements';
  3. Add renderFlatList method

    this.props.error ?
    <Text h4>Error: {this.props.data.message || 'πŸ˜•'}</Text> :
    <FlatList ... />

Test it. Instead of red or blank screen, now Error: Not Found displayed.

What’s else? Try to fetch facebook/react-native. We got another error πŸ™€

Cannot read property 'avatar_url' of null

Not all of author have avatar_url. We should do this for the Avatar source.

source={{uri: (item.author && item.author.avatar_url) || undefined}}

So, our app renders nothing if it has no url? It doesn’t look good. Solution: render author initial name.

With the help of RegEx and Avatar title props, renderLeftElement should look like this now:

renderLeftElement = (item) => {
const initials = item.commit.author.name.match(/\b\w/g) || [];

return (
<View style={leftElementStyle}>
<Avatar
title={((initials.shift() || '') + (initials.pop() || ''))}
...

Commit for Polishing the app section: 943974b.

When I wrote this, fetch facebook/react-native returning following:

Why no love for regex? Thanks to [Sanoor](https://stackoverflow.com/a/33076482).Why no love for regex? Thanks to Sanoor.

Conclusion​

We have created a simple app using RNE + RNW πŸ‘

  • Works great on iOS, web and android? βœ…

  • Use components from react-native-elements? βœ…

  • Move between screens? βœ…

  • API calls? βœ…

Some improvements for gitphone:

If you go back from Commits screen, input form on Home screen are empty. If you want preserve previous values, this can be fixed easily by introducing redux to the app. References here: 48108dd.

Can we fetch more commits data once we reach the most bottom of the list? Infinite scroll?

For web, we can use react-visibility-sensor. Check it out: 6c1f689.

For native, it’s easier. We can use FlatList onEndReached props. To give you an idea how, see this: 9d2e1f2.

Troubleshooting πŸ’Ίβ€‹

#1 Build failed when running yarn android

:app:compileDebugAidl FAILED

FAILURE: Build failed with an exception.

* What went wrong:
Execution failed for task ':app:compileDebugAidl'.
> java.lang.IllegalStateException: aidl is missing

* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output.

BUILD FAILED

Here is how to fix #1:

  1. Open Android Studio.

  1. Open android project under gitphone.

  1. Click Update on this prompt.

Wait for Android Studio syncing the project.

  1. It synced successfully with two errors.

  1. At this stage, just click Update Build Tools version and sync project on the sync window.

  2. Now, the remaining warning is the Configuration 'compile'...

  3. To fix that, open app/build.gradle file, change dependencies section (line 139) to use implementation instead of compile.

    dependencies { implementation fileTree(dir: "libs", include: ["*.jar"]) implementation "com.android.support:appcompat-v7:23.0.1" implementation "com.facebook.react:react-native:+" }

  4. Sync it again and close Android Studio.

Troubleshooting for android is done. Now, you should be able to run yarn android successfully.

#2 Build failed when running yarn ios

** BUILD FAILED **

The following build commands failed:

CompileC /gitphone/ios/build/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/double-conversion.build/Objects-normal/x86_64/strtod.o /gitphone/node_modules/react-native/third-party/double-conversion-1.1.5/src/strtod.cc normal x86_64 c++ com.apple.compilers.llvm.clang.1_0.compiler

Here is how to fix #2:

Inside the project, run script below from your favourite terminal

$ curl -L https://gist.githubusercontent.com/fiznool/739b8e592596b5731512edfd77a1a2e9/raw/e0123e0b2382e127f1cfd6e28228315f1299738f/fix-rn-xcode10.sh | bash

If you run yarn ios again, and you got this error

The following build commands failed:
Libtool /gitphone/ios/build/Build/Products/Debug-iphonesimulator/libRCTWebSocket.a normal x86_64
(1 failure)

Please run this script:

$ cp ios/build/Build/Products/Debug-iphonesimulator/libfishhook.a node_modules/react-native/Libraries/WebSocket

Troubleshooting for iOS is done. Now, you should be able to run yarn ios successfully.

Authors​