birth_chart 1.0.2
birth_chart: ^1.0.2 copied to clipboard
A simple customizable birth chart with custom data, colors and other stuff.
Birth Chart Flutter widget. #
A simple customizable birth chart with custom data, colors and other stuff.
Example #
See the example for more details.

BirthChart(
houses: List.generate(12, (_) => ChartHouse(position: 20)),
planets: [
ChartPlanet(position: 111, sign: '♈'),
ChartPlanet(position: 71, sign: '♓'),
],
aspects: [
ChartAspect(
planet1: ChartPlanet(position: 111, sign: '♈'),
planet2: ChartPlanet(position: 71, sign: '♓'),
type: ChartAspectType.red,
),
],
);
Installation #
$ flutter pub get birth_chart