Drop Cap

Renders a drop cap for the first letter of a paragraph.

Usage

To use the <DropCap> component, add it to your components list in your main.dart file:

ContentApp(
  components: [
    DropCap(),
  ],
)

Then put the <DropCap/> component immediately before the paragraph you want to apply it to:

<DropCap/>
The first letter of this paragraph (T) will be a drop cap. ...

Drop Cap Example