You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
package main
import"github.com/pterm/pterm"funcmain() {
// Print an informational message.pterm.Info.Println("This might not be rendered correctly on GitHub,\nbut it will work in a real terminal.\nThis is because GitHub does not use a monospaced font by default for SVGs")
// Create three panels with text, some of them with titles.// The panels are created using the DefaultBox style.panel1:=pterm.DefaultBox.Sprint("Lorem ipsum dolor sit amet,\nconsectetur adipiscing elit,\nsed do eiusmod tempor incididunt\nut labore et dolore\nmagna aliqua.")
panel2:=pterm.DefaultBox.WithTitle("title").Sprint("Ut enim ad minim veniam,\nquis nostrud exercitation\nullamco laboris\nnisi ut aliquip\nex ea commodo\nconsequat.")
panel3:=pterm.DefaultBox.WithTitle("bottom center title").WithTitleBottomCenter().Sprint("Duis aute irure\ndolor in reprehenderit\nin voluptate velit esse cillum\ndolore eu fugiat\nnulla pariatur.")
// Combine the panels into a layout using the DefaultPanel style.// The layout is a 2D grid, with each row being an array of panels.// In this case, the first row contains panel1 and panel2, and the second row contains only panel3.panels, _:=pterm.DefaultPanel.WithPanels(pterm.Panels{
{{Data: panel1}, {Data: panel2}},
{{Data: panel3}},
}).Srender()
// Print the panels layout inside a box with a title.// The box is created using the DefaultBox style, with the title positioned at the bottom right.pterm.DefaultBox.WithTitle("Lorem Ipsum").WithTitleBottomRight().WithRightPadding(0).WithBottomPadding(0).Println(panels)
}
box/custom-padding
SHOW SOURCE
package main
import"github.com/pterm/pterm"funcmain() {
// Create a default box with custom padding options and print "Hello, World!" inside it.pterm.DefaultBox.WithRightPadding(10).WithLeftPadding(10).WithTopPadding(2).WithBottomPadding(2).Println("Hello, World!")
}
box/default
SHOW SOURCE
package main
import"github.com/pterm/pterm"funcmain() {
// Create a default box with PTerm and print a message in it.// The DefaultBox.Println method automatically starts, prints the message, and stops the box.pterm.DefaultBox.Println("Hello, World!")
}
box/title
SHOW SOURCE
package main
import"github.com/pterm/pterm"funcmain() {
// Create a default box with specified paddingpaddedBox:=pterm.DefaultBox.WithLeftPadding(4).WithRightPadding(4).WithTopPadding(1).WithBottomPadding(1)
// Define a title for the boxtitle:=pterm.LightRed("I'm a box!")
// Create boxes with the title positioned differently and containing different contentbox1:=paddedBox.WithTitle(title).Sprint("Hello, World!\n 1") // Title at default position (top left)box2:=paddedBox.WithTitle(title).WithTitleTopCenter().Sprint("Hello, World!\n 2") // Title at top centerbox3:=paddedBox.WithTitle(title).WithTitleTopRight().Sprint("Hello, World!\n 3") // Title at top rightbox4:=paddedBox.WithTitle(title).WithTitleBottomRight().Sprint("Hello, World!\n 4") // Title at bottom rightbox5:=paddedBox.WithTitle(title).WithTitleBottomCenter().Sprint("Hello, World!\n 5") // Title at bottom centerbox6:=paddedBox.WithTitle(title).WithTitleBottomLeft().Sprint("Hello, World!\n 6") // Title at bottom leftbox7:=paddedBox.WithTitle(title).WithTitleTopLeft().Sprint("Hello, World!\n 7") // Title at top left// Render the boxes in a panel layoutpterm.DefaultPanel.WithPanels([][]pterm.Panel{
{{box1}, {box2}, {box3}},
{{box4}, {box5}, {box6}},
{{box7}},
}).Render()
}