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