API Reference

Components

Focused reference for Flint Dart and Flint UI APIs, with copyable examples and practical notes.

Components

FlintUI widgets for server-rendered UI and email templates.

FlintUI widgets produce HTML and plain text output. Render them with ctx.res.render() or use them inside email templates via ViewMailable.

Text, Container, Row, Column, Button, Image, Head

Core widgets for layout, typography, and content.

FlintComponent

Stateful component base class that renders using FlintWidgets.

Example

CodeBlock dart
app.get('/welcome', (Context ctx) async {
  return ctx.res.render(
    Container(
      padding: EdgeInsets.all(24),
      children: [
        Text('Welcome to Flint', fontSize: 28),
        Button(text: 'Get Started', url: '/guides'),
      ],
    ),
  );
});
Flint Dart logo
Flint EcosystemThe Unified Dart Technology Stack

One language powering Full-Stack Web, Cross-Platform Clients, Native AI, and Connected Robotics.

Fullstack
Client SDK
AI Engine
Hardware
Copyright 2026 Flint Dart. Maintained by Eulogia Technologies.
v 1.3.2
MIT License
Built with Dart