Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
2a520a6
Update links and metadata for flet-ads package
FeodorFitsner Oct 6, 2025
0b2ac57
Add flet-audio extension package and docs
FeodorFitsner Oct 6, 2025
0d9760a
Add flet-audio-recorder package and example
FeodorFitsner Oct 6, 2025
bbb4b16
Add flet-charts package and chart examples
FeodorFitsner Oct 7, 2025
50f9b89
Add example image to scatter chart documentation
FeodorFitsner Oct 7, 2025
cc1995c
Add flet-video package and update video dependencies
FeodorFitsner Oct 7, 2025
83e9c96
Fix Video example
FeodorFitsner Oct 7, 2025
760abb7
Add flet-lottie package and update dependencies
FeodorFitsner Oct 7, 2025
ac7a058
Add flet-map package and example integration
FeodorFitsner Oct 7, 2025
453849c
Add flet-rive extension for Rive animation support
FeodorFitsner Oct 7, 2025
66ccd43
Add flet-permission-handler extension and docs
FeodorFitsner Oct 7, 2025
9768b04
Add flet-geolocator package and example
FeodorFitsner Oct 7, 2025
62a7fcf
Refactor text style and value handling in DropdownM2
FeodorFitsner Oct 8, 2025
154f6e6
Add flet-datatable2, flet-flashlight, flet-webview packages
FeodorFitsner Oct 8, 2025
ca216d5
Add CI workflow for building Flet extension packages
FeodorFitsner Oct 8, 2025
76d56d3
Remove pubspec.lock after Flutter analysis
FeodorFitsner Oct 8, 2025
c0ef717
Add manual notify method to Observable and task status callback
FeodorFitsner Oct 8, 2025
89dd02a
Improve alt text generation in image macro
FeodorFitsner Oct 9, 2025
c9aacc2
Update CI workflow and README build badge
FeodorFitsner Oct 9, 2025
5826b89
Expand supported Python versions to <3.15
FeodorFitsner Oct 9, 2025
2c23b9b
Update Flutter version and dependencies
FeodorFitsner Oct 9, 2025
8a01e82
Make chart axis properties optional in chart classes
FeodorFitsner Oct 9, 2025
6a57aed
Add CandlestickChart control and documentation
FeodorFitsner Oct 9, 2025
63b5089
Remove timeout parameters from service methods
FeodorFitsner Oct 9, 2025
5b2fdf3
Add and improve docstrings for map and video modules
FeodorFitsner Oct 9, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 1 addition & 1 deletion .fvmrc
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"flutter": "3.35.1"
"flutter": "3.35.5"
}
107 changes: 105 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [ "3.10", "3.11", "3.12", "3.13" ]
python-version: [ "3.10", "3.11", "3.12", "3.13", "3.14" ]
steps:
- name: Checkout repository
uses: actions/checkout@v4
Expand Down Expand Up @@ -547,6 +547,90 @@ jobs:
sdk/python/dist/*.whl
sdk/python/dist/*.tar.gz

# ============================================
# Build Flet extension Python packages
# ============================================
build_flet_extensions:
name: Build ${{ matrix.package }} extension
runs-on: ubuntu-latest
needs:
- python_tests
- build_flet_package
env:
PYPI_VER: ${{ needs.build_flet_package.outputs.PYPI_VER }}
strategy:
fail-fast: false
matrix:
package:
- flet-ads
- flet-audio
- flet-audio-recorder
- flet-charts
- flet-datatable2
- flet-flashlight
- flet-geolocator
- flet-lottie
- flet-map
- flet-permission-handler
- flet-rive
- flet-video
- flet-webview
steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Setup uv
uses: astral-sh/setup-uv@v6

- name: Setup Flutter
uses: kuhnroyal/flutter-fvm-config-action/setup@v3
with:
path: '.fvmrc'
cache: true

- name: Analyze Flutter package with dart analyze
shell: bash
run: |
set -euo pipefail
PACKAGE="${{ matrix.package }}"
FLUTTER_PACKAGE="${PACKAGE//-/_}"
FLUTTER_DIR="${SDK_PYTHON}/packages/${PACKAGE}/src/flutter/${FLUTTER_PACKAGE}"

if [[ ! -d "$FLUTTER_DIR" ]]; then
echo "Flutter directory $FLUTTER_DIR not found"
exit 1
fi

pushd "$FLUTTER_DIR"
flutter pub get
dart analyze
rm -f pubspec.lock
popd

- name: Build Python package
shell: bash
working-directory: ${{ env.SDK_PYTHON }}
run: |
set -euo pipefail
PACKAGE="${{ matrix.package }}"
PYPROJECT="packages/${PACKAGE}/pyproject.toml"

source "$SCRIPTS/common.sh"
patch_toml_versions "$PYPROJECT" "$PYPI_VER"

rm -rf dist
uv build --package "$PACKAGE" --wheel
uv build --package "$PACKAGE" --sdist

- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: python-extension-${{ matrix.package }}
if-no-files-found: error
path: |
sdk/python/dist/*.whl
sdk/python/dist/*.tar.gz

# =====================================
# Build flet, flet-cli and flet-desktop
# =====================================
Expand Down Expand Up @@ -598,6 +682,7 @@ jobs:
- build_macos
- build_linux
- build_web
- build_flet_extensions
steps:
- name: Setup uv
uses: astral-sh/setup-uv@v6
Expand All @@ -613,7 +698,25 @@ jobs:
# remove client to avoid glob conflicts with its contents
rm -rf dist/client

for pkg in flet flet_cli flet_desktop flet_desktop_light flet_web; do
for pkg in \
flet \
flet_cli \
flet_desktop \
flet_desktop_light \
flet_web \
flet_ads \
flet_audio \
flet_audio_recorder \
flet_charts \
flet_datatable2 \
flet_flashlight \
flet_geolocator \
flet_lottie \
flet_map \
flet_permission_handler \
flet_rive \
flet_video \
flet_webview; do
uv publish dist/**/${pkg}-*
done

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
<a href="https://pypi.org/project/flet" target="_blank">
<img src="https://img.shields.io/pypi/pyversions/flet.svg?color=%2334D058" alt="Supported Python versions">
</a>
<a href="https://ci.appveyor.com/project/flet-dev/flet/branch/main" target="_blank">
<img src="https://ci.appveyor.com/api/projects/status/xwablctxslvey576/branch/main?svg=true" alt="Build status">
<a href="https://github.com/flet-dev/flet/actions/workflows/ci.yml" target="_blank">
<img src="https://github.com/flet-dev/flet/actions/workflows/ci.yml/badge.svg" alt="Build status">
</a>
</p>

Expand Down Expand Up @@ -51,7 +51,7 @@ with assets hosting and desktop clients.

Flet UI is built with [Flutter](https://flutter.dev/), so your app looks professional and could be delivered to any platform.
Flet simplifies the Flutter model by combining smaller "widgets" to ready-to-use "controls"
with an imperative programming model.
with an imperative programming model.

### 📱 Deliver to any device or platform

Expand Down
Loading
Loading