enoosoft / moon_phase

GNU General Public License v3.0
7 stars 9 forks source link

moon_phase

Flutter plugin that creates moon widgets according to the moon's phase.

Getting Started

Just add the MoonWidget and put in every single DateTime you want see. Then, the phase of the moon will be displayed.

  MoonWidget(
    date: DateTime.now(),
  ),

This is the example app that shows the shape of the moon every 12 hours for 30 days.

example app

Yes, this is cool!

Learn More

  MoonWidget(
    date: DateTime.now(),
    resolution: 128,
    size: 64,
    moonColor: Colors.amber,
    earthshineColor: Colors.blueGrey.shade900,
  ),

date

resolution

size

moonColor

earthshineColor


About