()
| 1107 | /// |
| 1108 | /// the capsText |
| 1109 | public final boolean isCapsText() { |
| 1110 | if (capsText == null) { |
| 1111 | if (capsTextDefault) { |
| 1112 | String uiid = getUIID(); |
| 1113 | return "Button".equals(uiid) || "RaisedButton".equals(uiid) || |
| 1114 | super.getUIManager().getThemeConstant("capsButtonUiids", "").indexOf(uiid) > -1; |
| 1115 | } |
| 1116 | return false; |
| 1117 | } |
| 1118 | return capsText; |
| 1119 | } |
| 1120 | |
| 1121 | /// Indicates whether text on the button should be drawn capitalized by |
| 1122 | /// default to match the Android design. By default only `Button` and |
no test coverage detected