crescender_foundations 0.0.1
crescender_foundations: ^0.0.1 copied to clipboard
Shared foundations for Crescender apps, starting with Australian-friendly formatting helpers.
example/crescender_foundations_example.dart
import 'package:crescender_foundations/crescender_foundations.dart';
void main() {
final date = DateTime(2025, 12, 27);
print(formatAuDate(date));
print(formatAud(1234.5));
print(1234.5.toAud(symbol: r'A$'));
}