You could accomplish this in several ways, I will layout a few here:
In your TableViewSource
you can do this:
1.) Implement: public override UIView GetViewForFooter(UITableView tableView, nint section)
and return your UILabel
2.) Implement public override nfloat GetHeightForFooter(UITableView tableView, nint section)
and return a height for your UIView
If your Footer is going to be a simple UILabel, you can replace Step 1 above with this:
Implement public override string TitleForFooter(UITableView tableView, nint section)
and return "Duke u ngarkuar".
You will still need to implement public override nfloat GetHeightForFooter(UITableView tableView, nint section)
and return a height otherwise your footer wont show up.
Alternatively, UITableView exposes a property called TableFooterView
that allows you to set a UIView for a footer.