Last updated:
0 purchases
si print
SIPrint #
This is a class package for Flutter print.
Display #
iOS
Android
web
MacOS
Getting Started #
use class #
final SIPrint samplePrint = SIPrint(
user: "Sample",
siUserEmoji: SIUserEmoji.user,
siFontColor: SIFontColor.yellow,
siFontBgColor: SIFontBgColor.white,
);
copied to clipboard
samplePrint.showPrint("Demo SIPrint");
samplePrint.showPrint("Demo SIPrint", tag: "api");
copied to clipboard
use directly #
SIPrint.black("Demo SIPrint", user: "Hope");
SIPrint.red("Demo SIPrint", user: "Hope", tag: "Cat");
SIPrint.green("Demo SIPrint", user: "Hope", emoji: SIUserEmoji.dragon);
SIPrint.yellow(
"Demo SIPrint",
user: "Hope",
tag: "Cat",
emoji: SIUserEmoji.dragon,
);
SIPrint.blue("Demo SIPrint", tag: "Pig");
SIPrint.magenta("Demo SIPrint", tag: "Pig", emoji: SIUserEmoji.pig);
SIPrint.cyan("Demo SIPrint");
SIPrint.white("Demo SIPrint");
SIPrint.blackBg("Demo SIPrint");
SIPrint.redBg("Demo SIPrint");
SIPrint.greenBg("Demo SIPrint");
SIPrint.yellowBg("Demo SIPrint");
SIPrint.blueBg("Demo SIPrint");
SIPrint.magentaBg("Demo SIPrint");
SIPrint.cyanBg("Demo SIPrint");
SIPrint.whiteBg("Demo SIPrint");
copied to clipboard
Property description #
parameter name
type
description
user
String
user name
tag
String
tag name
enable
bool
set enable or disable
siUserEmoji
SIUserEmoji
head emoji
siFontColor
SIFontColor
font color
siFontBgColor
SIFontBgColor?
font background color
emoji list #
Parameters
Categories
user
👤
mouse
🐭
rabbit
🐰
dragon
🐲
pig
🐷
tiger
🐯
koala
🐨
panda
🐼
monkey
🐵
lion
🦁
poop
💩
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.