loading_screen
This commit is contained in:
parent
5ee4e6eea3
commit
d7163bae21
|
|
@ -17,14 +17,14 @@ import "python.dart";
|
||||||
/*
|
/*
|
||||||
{% import "_macros.jinja2" as macros %}
|
{% import "_macros.jinja2" as macros %}
|
||||||
{% set config_platform = macros.get_config_platform(cookiecutter.options.package_platform) | trim %}
|
{% set config_platform = macros.get_config_platform(cookiecutter.options.package_platform) | trim %}
|
||||||
{% set splash_screen = (macros.get_value(cookiecutter.pyproject, "tool.flet." ~ config_platform ~ ".splash_screen") | trim)
|
{% set loading_screen = (macros.get_value(cookiecutter.pyproject, "tool.flet." ~ config_platform ~ ".loading_screen") | trim)
|
||||||
or (macros.get_value(cookiecutter.pyproject, "tool.flet.splash_screen") | trim)
|
or (macros.get_value(cookiecutter.pyproject, "tool.flet.loading_screen") | trim)
|
||||||
or "True" %}
|
or "False" %}
|
||||||
{% set splash_screen_text = (macros.get_value(cookiecutter.pyproject, "tool.flet." ~ config_platform ~ ".splash_screen_text") | trim)
|
{% set loading_screen_text = (macros.get_value(cookiecutter.pyproject, "tool.flet." ~ config_platform ~ ".loading_screen_text") | trim)
|
||||||
or (macros.get_value(cookiecutter.pyproject, "tool.flet.splash_screen_text") | trim) %}
|
or (macros.get_value(cookiecutter.pyproject, "tool.flet.loading_screen_text") | trim) %}
|
||||||
splash_screen: {{ splash_screen }}
|
loading_screen: {{ loading_screen }}
|
||||||
|
|
||||||
splash_screen_text: {{ splash_screen_text }}
|
loading_screen_text: {{ loading_screen_text }}
|
||||||
*/
|
*/
|
||||||
|
|
||||||
{% for dep in cookiecutter.flutter.dependencies %}
|
{% for dep in cookiecutter.flutter.dependencies %}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue