Skip to content

Commit

Permalink
Add FAQ button to the header
Browse files Browse the repository at this point in the history
  • Loading branch information
tsterbak committed Feb 26, 2023
1 parent a570277 commit 7811a7e
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions openandroidinstaller/openandroidinstaller.py
Original file line number Diff line number Diff line change
Expand Up @@ -233,6 +233,17 @@ def main(page: Page, test: bool = False, test_config: str = "sargo"):
center_title=False,
bgcolor="#00d886",
actions=[
Container(
content=ElevatedButton(
icon=icons.QUESTION_MARK_ROUNDED,
text="FAQ",
on_click=lambda _: webbrowser.open(
"https://openandroidinstaller.org/faq.html"
),
),
padding=15,
tooltip="Frequently asked questions and encountered issues.",
),
Container(
content=ElevatedButton(
icon=icons.BUG_REPORT_OUTLINED,
Expand Down

0 comments on commit 7811a7e

Please sign in to comment.