-
Notifications
You must be signed in to change notification settings - Fork 547
v1: Documentation with mkdocs #5466
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This PR introduces documentation with mkdocs by adding a comprehensive set of example files for a Flet controls gallery application. The examples showcase various UI controls, layouts, input controls, display components, dialogs, and color configurations.
- Adds examples for layout controls (placeholder, pagelet, listview, etc.)
- Includes input control examples (textfield, slider, checkbox, etc.)
- Provides display control examples (text, images, charts, etc.)
- Contains dialog examples (datepicker, alerts, sheets, etc.)
- Adds color and theme examples
Reviewed Changes
Copilot reviewed 291 out of 1887 changed files in this pull request and generated no comments.
Show a summary per file
File | Description |
---|---|
sdk/python/examples/apps/controls-gallery/examples/layout/* | Layout control examples including placeholder, pagelet, listview, listtile, gridview, expansiontile, container, column, card |
sdk/python/examples/apps/controls-gallery/examples/input/* | Input control examples including textfield, switch, slider, searchbar, radio, dropdown, checkbox, autocomplete |
sdk/python/examples/apps/controls-gallery/examples/displays/* | Display control examples including text, progressring, markdown, image, icon, canvas, badge |
sdk/python/examples/apps/controls-gallery/examples/dialogs/* | Dialog examples including timepicker, snackbar, datepicker, bottomsheet, banner, alertdialog |
sdk/python/examples/apps/controls-gallery/examples/contrib/* | Contributed control examples like colorpicker |
sdk/python/examples/apps/controls-gallery/examples/colors/* | Color and theme examples including theme colors, cupertino colors, control colors |
Comments suppressed due to low confidence (3)
sdk/python/examples/apps/controls-gallery/examples/layout/pagelet/01_pagelet_example.py:3
- The name variable should match the actual control being demonstrated. This file shows a Pagelet example but the name says 'CupertinoListTile example'.
name = "CupertinoListTile example"
sdk/python/examples/apps/controls-gallery/examples/displays/text/09_text_with_tooltip_with_a_custom_decoration.py:3
- The name variable does not match the example content. This is a text with tooltip example, not an image fade example.
name = "Gradually fade out image to the bottom edge"
sdk/python/examples/apps/controls-gallery/examples/displays/progressring/01_progressring_example.py:8
- The name variable says 'ProgressBar Example' but this file is for ProgressRing. The name should be 'ProgressRing Example'.
name = "ProgressBar Example"
No description provided.