Skip to content

Commit

Permalink
Default webrenderer is canvaskit
Browse files Browse the repository at this point in the history
  • Loading branch information
FeodorFitsner committed Jun 23, 2022
1 parent c3b2f38 commit ac39008
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ for:
# Flutter Web client
- cd client
- flutter test
- flutter build web --release --web-renderer canvaskit
- flutter build web --release
- rm -rf build/web/canvaskit
- ls -alR build/web
- cd ..
Expand Down
4 changes: 2 additions & 2 deletions sdk/python/flet/flet.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def page(
permissions=None,
view: AppViewer = WEB_BROWSER,
assets_dir=None,
web_renderer=None,
web_renderer='canvaskit',
):
conn = _connect_internal(
page_name=name,
Expand Down Expand Up @@ -84,7 +84,7 @@ def app(
permissions=permissions,
session_handler=target,
assets_dir=assets_dir,
web_renderer=web_renderer,
web_renderer='canvaskit',
)
print("App URL:", conn.page_url)

Expand Down

0 comments on commit ac39008

Please sign in to comment.