Skip to content

Instantly share code, notes, and snippets.

@emmanuelrosa
emmanuelrosa / color_swatch.dart
Created December 20, 2025 20:04
Flutter examples of a color swatch next to a label.
// Flutter examples of a color swatch next to a label.
import 'package:flutter/material.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});