Dart API Referencedart:htmlMediaQueryList

MediaQueryList Interface

DRAFT
This page is not complete.

A MediaQueryList object maintains a list of media queries on a document , and handles sending notifications to listeners when the media queries on the document change.

This makes it possible to observe a document to detect when its media queries change, instead of polling the values periodically, if you need to programmatically detect changes to the values of media queries on a document.

Methods

Code void addListener(MediaQueryListListener listener) #

Adds a new listener to the media query list. If the specified listener is already in the list, this method has no effect.

Parameters
listener
The MediaQueryListListener to invoke when the media query's evaluated result changes.
void addListener(MediaQueryListListener listener);

Code void removeListener(MediaQueryListListener listener) #

Removes a listener from the media query list. Does nothing if the specified listener isn't already in the list.

Parameters
listener
The MediaQueryListListener to stop calling on changes to the media query's evaluated result.
void removeListener(MediaQueryListListener listener);

Fields

Code final bool matches #

true if the document currently matches the media query list; otherwise false. Read only.
final bool matches;

Code final String media #

The serialized media query list.
final String media;

This page includes content from the Mozilla Foundation that is graciously licensed under a Creative Commons: Attribution-Sharealike license. Mozilla has no other association with Dart or dartlang.org. We encourage you to improve the web by contributing to The Mozilla Developer Network.