score_progress_pretty_display 1.0.2 score_progress_pretty_display: ^1.0.2 copied to clipboard
A Flutter package to display and visualize credit card scores, or any other type of score, in a visually appealing way.
import 'package:example/features/dashboard/dashboard_screen.dart';
import 'package:flutter/material.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Demo',
debugShowCheckedModeBanner: false,
theme: ThemeData.dark(),
home: const DashboardScreen(),
);
}
}