UI Creation
In this section, we will build our dApp's user interface! We'll create a structured UI system with three main panels for status updates, actions, and minting functionality.
Setting Up the Main Canvasโ
First, let's create our base canvas:
- In the Hierarchy window, right-click on "Sample Scene".
- Navigate to GameObject โ UI โ Canvas.
Creating the Web3UI Containerโ
- Right-click on your new Canvas.
- Select "Create Empty".
- Rename it to "Web3UI".
Setting Up Main Panelsโ
Inside Web3UI, create three panel objects:
- Right-click on Web3UI and select "Create Empty".
- Create and rename these panels:
- StatusPanel - Your dApp's information display
- ButtonPanel - For user interactions
- MintPanel - For token minting features
Creating Panel Componentsโ
StatusPanel Componentsโ
This panel shows all your important Web3 information:
- Right click on StatusPanel, click on UI โ Text - TextMeshPro and then rename to StatusText. Make sure to fill the โText Inputโ field in the Inspector pane e.g. "Status..."
TextMeshPro (TMP) Setup
When you first create a TextMeshPro element (UI - Text - TextMeshPro), Unity automatically prompts you to import TMP Essentials. If you accidentally skip this prompt, you can manually import it through Window > TextMeshPro > Import TMP Essentials.
Why we need this: TextMeshPro requires core resources (shaders, default fonts, and materials) to properly display text in your game. Without these essentials, your text components won't render correctly and you'll see shader/material errors in your project. This is a one-time setup that's necessary for text to work properly.
- Right click on StatusPanel, click on UI โ Text - TextMeshPro and then rename to AddressText. Make sure to fill the text object e.g "Address Text..."
- Right click on StatusPanel, click on UI โ Text - TextMeshPro and then rename to TokenBalanceText. Make sure to fill the text object e.g "0.0000 ET"
โโโ StatusText (TextMeshPro)โ โโโ Default: "Status..."โโโ AddressText (TextMeshPro)โ โโโ Default: "Address Text..."โโโ TokenBalanceText (TextMeshPro) โโโ Default: "0.0000 ET"
ButtonPanel Componentsโ
Your main interaction buttons:
-
Right click on ButtonPanel, click on UI โ Button - TextMeshPro and then rename it to ConnectWalletButton. Make sure to fill the "Text Input" field in the Inspector pane with "Connect Wallet".
-
Right click on ButtonPanel, click on UI โ Button - TextMeshPro and then rename it to DisconnectWalletButton. Make sure to fill the "Text Input" field in the Inspector pane with โDisconnect Wallet".
ButtonPanelโโโ ConnectWalletButton (Button - TextMeshPro)โ โโโ Text: "Connect Wallet"โโโ DisconnectWalletButton (Button - TextMeshPro)โ โโโ Text: "Disconnect Wallet"
MintPanel Componentsโ
The token minting interface:
- Right click on MintPanel, click on UI โ Input Field โ TextMeshPro and then rename to MintAmountInput. Make sure to fill the placeholder object with "Enter Amountโฆ"
- Right click on MintPanel, click on UI โ Button โ TextMeshPro and then rename to MintButton. Make sure to fill the text object with "Mint"
MintPanelโโโ MintAmountInput (Input Field - TextMeshPro)โ โโโ Placeholder: "Enter Amount..."โโโ MintButton (Button - TextMeshPro) โโโ Text: "Mint"
After creating all components, your hierarchy should look like this:
Canvasโโโ Web3UI โโโ StatusPanel โโโ ButtonPanel โโโ MintPanel
For your component to be well arranged as seen in the image above, you have to manually arrange them with the icon on the right-hand side when you click on each component.