fr_acdd 0.6.0 copy "fr_acdd: ^0.6.0" to clipboard
fr_acdd: ^0.6.0 copied to clipboard

Contract annotations and shared BFF DTO export for FlowR contract-first pages.

example/lib/main.dart

import 'package:example_fr_acdd/page/home_page/home_page.dart';
import 'package:flutter/material.dart';

void main() {
  runApp(const ExampleFrAcddApp());
}

class ExampleFrAcddApp extends StatelessWidget {
  const ExampleFrAcddApp({super.key});

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      debugShowCheckedModeBanner: false,
      title: 'fr_acdd Home Example',
      theme: ThemeData(
        useMaterial3: true,
        colorScheme: ColorScheme.fromSeed(
          seedColor: const Color(0xFFFF5A63),
          brightness: Brightness.light,
        ),
        scaffoldBackgroundColor: const Color(0xFFF7F8FC),
        textTheme: Theme.of(context).textTheme.apply(
          bodyColor: const Color(0xFF101828),
          displayColor: const Color(0xFF101828),
        ),
      ),
      home: const HomePage(),
    );
  }
}
0
likes
130
points
169
downloads

Documentation

API reference

Publisher

verified publisherwyattcoder.top

Weekly Downloads

Contract annotations and shared BFF DTO export for FlowR contract-first pages.

Repository (GitHub)
View/report issues

License

MIT (license)

Dependencies

analyzer, args, freezed_annotation, meta, path

More

Packages that depend on fr_acdd