argonPagination: Build an argon pagination container

Description Usage Arguments Note Author(s) Examples

View source: R/argonPagination.R

Description

Build an argon pagination container

Usage

1
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

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
if(interactive()){
 library(argonR)
 argonPagination(
  size = "lg",
  align = "center",
  argonPaginationItem(
    name = 1,
    src = "test.html"
  ),
  argonPaginationItem(
    name = 2,
    src = "https://www.google.com"
  )
 )
}

argonR documentation built on Dec. 1, 2019, 1:15 a.m.