Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- MAIN_GUI = ft.Container(
- margin=ft.margin.only(bottom=40),
- expand=True,
- content=ft.Row([
- ft.Card(
- elevation=30,
- expand=4,
- content=ft.Container(
- content=ft.Column([
- ft.Text("LEFT SIDE, 1st row", size=30, weight=ft.FontWeight.BOLD),
- ft.Text("LEFT SIDE 2nd row", size=30, weight=ft.FontWeight.NORMAL)
- ]),
- border_radius=ft.border_radius.all(20),
- bgcolor=ft.colors.WHITE24,
- padding=45,
- )
- ),
- ft.Tabs(
- selected_index=0,
- animation_duration=300,
- expand=3,
- tabs=[
- ft.Tab(
- text="Tab 1",
- icon=ft.icons.SEARCH,
- content=ft.Container(
- content=ft.Card(
- elevation=30,
- content=ft.Container(
- content=ft.Text("Amazing TAB 1 content", size=50, weight=ft.FontWeight.BOLD),
- border_radius=ft.border_radius.all(20),
- bgcolor=ft.colors.WHITE24,
- padding=45,
- )
- )
- ),
- ),
- ft.Tab(
- text="Tab 2",
- icon=ft.icons.SETTINGS,
- content=ft.Text("Amazing TAB 2 content"),
- ),
- ],
- )
- ])
- )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement