Skip to content

Latest commit

 

History

History
51 lines (34 loc) · 685 Bytes

README.md

File metadata and controls

51 lines (34 loc) · 685 Bytes

Navigation

This example shows how to create a simple navigation bar with links to different pages.

Used Components:

  • PageTitle
  • Navbar
  • Link
  • Text
  • Page

Used Events:

  • GoToEvent

How to run

Clone the repo

git clone https://github.com/hasansezertasan/fastui-tutorials.git
cd fastui-tutorials

Change directory to the example

cd examples/navigation

Create a virtual environment

  • Create and activate a virtual environment:
python3 -m venv venv
source venv/bin/activate

Install the requirements

pip install -r 'requirements.txt'

Run the application

uvicorn main:app