Bravo Studio is the piece that connects the design and the backend to build a fully functional app. Unlike other app builders, Bravo leverages the design and the data handling of third-party tools, adding flexibility to the process. In summary, to create an app we need:
Figma or Adobe XD to design the UI
Any backend with a REST API to store the data (this one is optional though)
Bravo Studio to add functionality by connecting the design with the data. We call โbindingโ to this process.
On the one hand, since the design part is leveraged to Figma or Adobe XD you can benefit from the power of these tools in a number of ways:
They are the standard in the industry, offering lots of features and great UX
Most designers already know how to use them
Both have a huge community of users
Even if you are not familiarised, there are a lot of tutorials and learning material
The same goes for the backend. With Bravo you are able to connect to any public API and get the data into your app. There are lots of no-code backends that you can use, for example:
Airtable is an enhanced version of Google Sheets, best for beginners
Xano is a scalable backend, best for low-coders
Supabase provides a dedicated database based on Postgres, best for experts
You can also use your own backend. Bravo is great for creating an app when you already have a website
What Bravo does then is to add functionality to your app by connecting the data with the elements of the UI. For this we need to use Bravo tags, a list of text strings placed in the elements of your design file, that Bravo converts into native components (both iOS and Android). We will cover more of this in the future.
What we are going to build
For this introductory tutorial we are building a simple app with a few screens:
1.
A list of luxury resorts
2.
A detail page to show more info and images
3.
A modal page
Letโs get started!
The design
First off we are going to duplicate the design template and connect it to Bravo:
4. Paste the link from step 2 into the input field. Click Connect Bravorized Figma file
5. Once the app is successfully created you will see the app screens imported from your design
โ
Now that you own the design file and you have it connected to Bravo, letโs learn a little about bravorizing.
We call bravorizing the process of setting up your design file for being converted into a native app by Bravo Studio. In general, bravorizing consists of:
Structuring layers as required by each Bravo component
AddingBravo tags to add functionality and structure
โ
There are a lot of Bravo components that you can use in your app: Menu, Swipe page, Carousel slider, Modal page, Map, Form and more. To set up a component we put Bravo tags within specific layers structure. The most elementary tag that Bravo requires is [container].
Containers wrap the UI elements and separate them from each other. You can think of them as blocks. In our first app screen, we have three [container]: named โTop barโ, โDiscount blockโ and โResort cardโ.
Bravo tags not only work for components or containers, they are also used to add actions to buttons, set the app icon, form input fields, etc. They convert the tagged layers into native mobile elements.
Types of Bravo tags
Explore the layers in the design file and see how Bravo tags are used in the app.
The backend
A backend is a server that stores data and provides APIs that you can connect to get the information for your app. Think of APIs as an intermediary that allows two applications to talk to each other. In this case, Bravo and the backend, an Airtable database.
One of the greatest core values of Bravo is flexibility. In Bravo, you can create connections to any backend that provides an API. For our app, we have built a database template in Airtable, one of the simplest (yet powerful) no-code databases.
Copy the Airtable base above to your workspace:
Binding
Now that you have the design and the database ready, we will connect the two and add functionality. First, we need to create API requests from Bravo to the Airtable API endpoints:
3. Go to the Airtable. On the top right, click Share โ Share publicly and copy the shared base link:
4. Go back to Bravo and paste the shared base link into the โEnter URLโ field. Click Continue.
5. Go to Airtable again, click in your avatar image on the top right and select Account. Copy your API key.
6. Paste your API key in Bravo and click Complete
Congrats! You have created your first API requests for your app.
As we have selected the Airtable Wizard option, Bravo created two requests per table: โListโ and โDetailโ.
The โListโ requests display all the data from theendpoint.
The โDetailโ request displays data based on the item selected on the preceding app screen.
Furthermore, all the data received have been selected automatically. This will allow us to assign (bind) each data point to its correspondent UI element. Letโs do it!
โ
1.
In Bravo, go to Apps and open the tutorial app.
2.
You will see your app screens. Click the Home screen.
You have entered databinding mode. Here you can assign data from the API to each UI element from your design file.
1. Click โResort cardโ. Choose property โContainerโ and select request โResorts - Listโ โ โrecordsโ. This binding will create as many โcardsโ as rows in the database.
We have done our first binding! Letโs continue with the rest of the elements.
10. Click *Resort card โ Price. Choose property Text and select data point โpriceโ (The request โResorts - Listโ should be already selected).
11. Do the same for *Country,*Rating and *Title, which has the same name for the data points. For *Image (IMAGE), select data point โimages 0 urlโ.
We have bound our Home screen to the backend! ๐
โ
Preview your app
Itโs time to see our app live: Download Bravo Vision from the app store:
Now open the app and log in using your Bravo credentials. You will see our app Luxury resorts. Tap to open it.
The list of resorts should be visible, along with the profile image and the โGood morning, Monicaโ text.
Now open a couple of resorts. You will see that it shows the same content for all of the detail pages (the template content). That is because Bravo shows the design content by default. Letโs bind that screen to fill it with content from the API.
1.
Go back to Bravo Studio and open the Resort detail page
2.
Open *Trip card โ Image (IMAGE). Choose property โImageโ and select Resorts - Detail โ โimages 0 thumbnails large urlโ:
3. Repeat the process for the rest of the parameters with an asterisk *. Note that in Airtable, the first image is numbered โ0โ, so UI element โ*Image 2โ should be bound to data point โimages 1 thumbnails large urlโ.
Pro tip: Since we have added an asterisk to every element that needs to be bound, you can instantly search for all of them by typing an * symbol in the Search field.
Once you have bound all the elements, go back to Bravo Vision and tap on a resort from the Home page. You will see that now it shows the correct content. If not, pull to refresh and voilร ! ๐
Live updates
Another cool feature of Bravo is live updates. Once your app is live on the app stores, most of the changes wonโt require the users to update to a new version of the app. That includes changing the design, adding new app pages, changes in bindings and more. Your users can instantly enjoy the latest version of your app without any hassle.
Make it yours
Our app is complete! Now you can keep learning the power of Bravo by doing changes to the design, adding more content to the database or any idea you come up with. Remember to update the design in Bravo every time you do changes in the Figma file.
You will find lots of documentation, videos and more in the Bravo Help Center.