Files
NativeScript/apps/tests/ui/search-bar/search-bar-tests-native.ios.ts
Nathanael Anderson b259cde7fd Adding Search Hint text color; since this is not accessible from the standard style/theming xml files.
Added Tests so that it will verify the search bar color is changing.
2015-05-27 11:50:56 -05:00

8 lines
252 B
TypeScript

import colorModule = require("color");
import searchBarModule = require("ui/search-bar");
export function getNativeHintColor(searchBar: searchBarModule.SearchBar): colorModule.Color {
// TODO: This test needs to be created
return undefined;
}