<!DOCTYPE ui:UiBinder SYSTEM "http://dl.google.com/gwt/DTD/xhtml.ent">
<ui:UiBinder xmlns:ui="urn:ui:com.google.gwt.uibinder"
xmlns:g="urn:import:com.google.gwt.user.client.ui"
xmlns:m="urn:import:de.swm.commons.mobile.client.widgets"
xmlns:ms="urn:import:de.swm.commons.mobile.client.widgets.scroll">
<ui:style>
.modify > div {
-webkit-box-orient: vertical;
-webkit-box-align: start;
-ms-flex-direction: column;
-ms-flex-align: start;
}
.modify select {
min-width: 18em !important;
}
</ui:style>
<g:HTMLPanel>
<m:HeaderPanel ui:field="header" leftButton="Back">
<m:OnlyDesktopLabel>Drop Down List</m:OnlyDesktopLabel>
</m:HeaderPanel>
<ms:ScrollPanel>
<m:ListPanel selectable="false" secondaryStyle="{style.modify}">
<m:ListItem>
<g:Label>Favorite Car:</g:Label>
<m:DropDownList ui:field="cars" />
</m:ListItem>
</m:ListPanel>
</ms:ScrollPanel>
</g:HTMLPanel>
</ui:UiBinder>