mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
14 lines
290 B
Cheetah
14 lines
290 B
Cheetah
{% from "macros.tmpl" import license %}
|
|
{{ license() }}
|
|
|
|
#ifndef MediaFeatures_h
|
|
#define MediaFeatures_h
|
|
|
|
#define CSS_MEDIAQUERY_NAMES_FOR_EACH_MEDIAFEATURE(macro) \
|
|
{% for entry in entries %}
|
|
macro({{entry|symbol}}){% if not loop.last %} \
|
|
{% endif %}
|
|
{% endfor %}
|
|
|
|
#endif
|