fastyle_financial 0.0.20+1 copy "fastyle_financial: ^0.0.20+1" to clipboard
fastyle_financial: ^0.0.20+1 copied to clipboard

Set of Financial Widgets for the fastyle library.

example/lib/main.dart

// Flutter imports:
import 'package:flutter/material.dart';

// Package imports:
import 'package:fastyle_core/fastyle_core.dart';

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

class MyApp extends StatefulWidget {
  const MyApp({super.key});

  @override
  State<MyApp> createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  @override
  Widget build(BuildContext context) {
    return FastApp(
      homeBuilder: (_) => const Scaffold(
          body: FastSectionPage(
        child: Column(
          children: [],
        ),
      )),
    );
  }
}