A ios UITableView plugin for nativescript which allows you to add table headerview
npm install nativescript-listview-headerA plugin for adding headerView i.e. tableHeaderView to ListView for iOS.
```
tns plugin add nativescript-listview-header$3
Include the plugin in your xml
`xml`
xmlns:tools="nativescript-listview-header">
Set your header view in code behind
`javascript``
var searchBarModule = require("ui/search-bar");
exports.onListViewLoaded = function(args) {
var listView = args.object;
listView.tableHeaderView = new searchBarModule.SearchBar();
}
