gcc_currency 0.0.1 copy "gcc_currency: ^0.0.1" to clipboard
gcc_currency: ^0.0.1 copied to clipboard

GCC currency symbols as Flutter icons and text

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:gcc_currency/gcc_currency.dart';

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

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

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        body: Center(
          child: Row(
            mainAxisSize: MainAxisSize.min,
            children: [
              Icon(GCCCurrencyIcon.aed, size: 24),
              const SizedBox(width: 8),
              const Text('100'),
            ],
          ),
        ),
      ),
    );
  }
}
1
likes
140
points
106
downloads

Publisher

verified publisherfathaaah.com

Weekly Downloads

GCC currency symbols as Flutter icons and text

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on gcc_currency