argonPagination {argonR} | R Documentation |
Build an argon pagination container
argonPagination(..., size = NULL, align = NULL)
... |
Slot for argonPaginationItem. |
size |
Pagination size: NULL, "sm" or "lg". |
align |
Pagination alignement. NULL (left), "center" or "end" (right). |
align will not work if you embed the argonPagination in an argonRow.
David Granjon, dgranjon@ymail.com
if(interactive()){ library(argonR) argonPagination( size = "lg", align = "center", argonPaginationItem( name = 1, src = "test.html" ), argonPaginationItem( name = 2, src = "https://www.google.com" ) ) }