xaurx

Results 14 comments of xaurx

@wyatterp365 seems you forgot/lost comment you wanted to type.

sure. lets start with the simple one: ``` func main() { cfg := config.NewBuilder(). WithPageSize(pagesize.Letter). WithOrientation(orientation.Horizontal). WithMargins(15, 15, 15) m := maroto.New(cfg.Build()) textProps := props.Text{ Size: 8, Align: align.Left, Left:...

another scenario where I want to separate groups of rows by line: ``` for i := 0; i < 1000; i++ { m.AddRows(line.NewRow(0.4, props.Line{Thickness: 0.4, SizePercent: 100})) m.AddRow(4, text.NewCol(12, fmt.Sprintf("row...

> We only have to add an if to check of cols are empty, if is we should add an empty column to it. > > https://github.com/johnfercher/maroto/blob/4f5e4468fe24ed336c5cda1d5115808faf1cf369/maroto.go#L103-L107 can't I add...