Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
Rogendo committed Sep 5, 2023
1 parent 8d9ae45 commit e6eedfc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion flet_card.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

def main(page):
page.title = "Card Example"

page.theme_mode = "light"
page.add(
ft.Card(
content=ft.Container(
Expand All @@ -13,7 +15,7 @@ def main(page):
subtitle=ft.Text(
"pickup groceries at Naivas Supermarket..."
),
subtitle=ft.Text("Deadline at November 10, 2023 10:00 am"),
# subtitle=ft.Text("Deadline at November 10, 2023 10:00 am"),
),
ft.Row(
[ft.TextButton("View"), ft.TextButton("Confirm")],
Expand Down
2 changes: 1 addition & 1 deletion hellowrld.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

def main(page :ft.Page):
page.title = "hello world app"
page.theme_ = "dark"
page.theme_mode= "dark"

message = ft.Text(value= "hello guys, this us my first flutter app")
page.add(message)
Expand Down

0 comments on commit e6eedfc

Please sign in to comment.