Build a native mobile app that acts as a simple block explorer for the World Chain mainnet.
The app should have two main screens:
1. **Home Screen (Latest Blocks):**
* This screen should be the default view when the app opens.
* It should display a continuously updating list of the latest blocks mined on the World Chain.
* For each block in the list, display the following key information:
* Block Number
* Timestamp (show how long ago it was mined, e.g., "30 seconds ago")
* The number of transactions in the block.
* Tapping on a block in the list should navigate the user to the Block Details Screen.
2. **Block Details Screen:**
* This screen should display detailed information about a specific block selected from the Home Screen.
* Display all available information for the block, including:
* Block Number
* Timestamp (the full date and time)
* Block Hash
* Parent Hash
* Miner (Fee Recipient)
* Gas Used
* Gas Limit
* A list of all transaction hashes included in the block.
* The app does not need to show transaction details at this stage.
* Include a back button to return to the Home Screen.
**General Requirements:**
* The app should be designed for both iOS and Android.
* The user interface should be clean, simple, and easy to read.
* No user accounts or login functionality is required. All data is public.
Build a native mobile app that acts as a simple block explorer for the World Chain mainnet.
The app should have two main screens:
1. **Home Screen (Latest Blocks):**
* This screen should be t...