chain_ui 0.0.1
chain_ui: ^0.0.1 copied to clipboard
Lightweight Flutter extensions for adaptive layouts, animations, accessibility, and gesture handling with clean, chainable APIs.
import 'package:flutter/material.dart';
import 'screens/home_screen.dart';
void main() {
runApp(const ChainUIExampleApp());
}
class ChainUIExampleApp extends StatelessWidget {
const ChainUIExampleApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Chain UI Example',
theme: ThemeData(
colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
useMaterial3: true,
cardTheme: CardTheme(
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(16),
),
shadowColor: Colors.transparent,
),
),
home: const HomeScreen(),
);
}
}