Birth Chart Flutter widget.

A simple customizable birth chart with custom data, colors and other stuff.

Package version


Example

See the example for more details.

Example GIF
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

Libraries

birth_chart