I started redoing my Mission View to make it look nicer. I also wanted to add a radar-like chart to show player skills, but I didn’t find any easy package for that (just checked the most popular ones quickly).
Charts in Flutter aren’t too hard to understand. You need:
A data model for your points.
Series that define how the data is drawn (line, bar, etc).
Axes for labels and scaling.
Animations usually come automatically when data changes.
Even if radar charts aren’t easy, you can still use bar or line charts to show stats. Later I might try making a custom radar chart myself with CustomPainter.
For now, I’m focusing on making the UI better and showing skill stats in a clear, animated way.
Log in to leave a comment