Your First Ionic App: React
The great thing about Ionic is that with one codebase, you can build for any platform using just HTML, CSS, and JavaScript. Follow along as we learn the fundamentals of Ionic app development by creating a realistic app step by step.
Here’s the finished app running on all 3 platforms:
#
What We'll BuildWe'll create a Photo Gallery app that offers the ability to take photos with your device's camera, display them in a grid, and store them permanently on the device.
Highlights include:
- One React-based codebase that runs on the web, iOS, and Android using Ionic Framework UI components.
- Deployed as a native iOS and Android mobile app using Capacitor, Ionic's official native app runtime.
- Photo Gallery functionality powered by the Capacitor Camera, Filesystem, and Storage APIs.
Find the complete app code referenced in this guide on GitHub.
#
Download Required ToolsDownload and install these right away to ensure an optimal Ionic development experience:
- Node.js for interacting with the Ionic ecosystem. [Download the LTS version here](https://nodejs.org/en/).
- A code editor for... writing code! We are fans of [Visual Studio Code](https://code.visualstudio.com/).
- Command-line interface/terminal (CLI):
- Windows users: for the best Ionic experience, we recommend the built-in command line (cmd) or the Powershell CLI, running in Administrator mode.
- Mac/Linux users, virtually any terminal will work.
#
Install Ionic ToolingRun the following in the command line terminal to install the Ionic CLI (ionic
), native-run
, used to run native binaries on devices and simulators/emulators, and cordova-res
, used to generate native app icons and splash screens:
To open a terminal in Visual Studio Code, go to Terminal -> New Terminal.
The
-g
option means install globally. When packages are installed globally,EACCES
permission errors can occur.Consider setting up npm to operate globally without elevated permissions. See Resolving Permission Errors for more information.
#
Create an AppNext, create an Ionic React app that uses the “Tabs” starter template and adds Capacitor for native functionality:
This starter project comes complete with three pre-built pages and best practices for Ionic development. With common building blocks already in place, we can add more features easily!
Next, change into the app folder:
Next we'll need to install the necessary Capacitor plugins to make the app's native functionality work:
#
PWA ElementsSome Capacitor plugins, including the Camera API, provide the web-based functionality and UI via the Ionic PWA Elements library.
It's a separate dependency, so install it next:
After installation, open up the project in your code editor of choice.
Next, import @ionic/pwa-elements
by editing src/index.tsx
.
That’s it! Now for the fun part - let’s see the app in action.
#
Run the AppRun this command in your shell:
And voilà! Your Ionic app is now running in a web browser. Most of your app can be built and tested right in the browser, greatly increasing development and testing speed.
#
Photo Gallery!!!There are three tabs. Click on the Tab2 tab. It’s a blank canvas, aka the perfect spot to transform into a Photo Gallery. The Ionic CLI features Live Reload, so when you make changes and save them, the app is updated immediately!
Open /src/pages/Tab2.tsx
. We see:
IonHeader
represents the top navigation and toolbar, with "Tab 2" as the title. Let’s rename it:
We put the visual aspects of our app into <IonContent>
. In this case, it’s where we’ll add a button that opens the device’s camera as well as displays the image captured by the camera. Start by adding a floating action button (FAB). First, update the imports at the top of the page to include the Camera icon as well as some of the Ionic components we'll use shortly:
Then, add the FAB to the bottom of the page. Use the camera image as the icon, and call the takePhoto()
function when this button is clicked (to be implemented soon):
We’ll be creating the takePhoto
method and the logic to use the Camera and other native features in a moment.
Next, open src/App.tsx
then import the images
icon:
Within the tab bar (<IonTabBar>
), change the label to “Photos” and the icon to images
for the middle tab button:
In Ionic React, icons are imported individually from
ionicons/icons
and set to the icon prop.
That’s just the start of all the cool things we can do with Ionic. Up next, implement camera taking functionality on the web, then build it for iOS and Android.