fastyle_financial 0.0.8 copy "fastyle_financial: ^0.0.8" to clipboard
fastyle_financial: ^0.0.8 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_dart/fastyle_dart.dart';
import 'package:matex_financial/financial.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 const FastApp(
      home: Scaffold(
          body: FastSectionPage(
        child: Column(
          children: [
            MatexSelectCurrencyField(),
          ],
        ),
      )),
    );
  }
}