orlikraf / flutter-hexagon

MIT License
30 stars 17 forks source link

How can I decorate hexagon with image? #19

Open Hwan-seok opened 2 years ago

Hwan-seok commented 2 years ago

I am trying to cover the hexagon as a image but no luck. How can I achieve this?

nohkumado commented 8 months ago

well would be interesting to know indeed :D from the example:


HexagonWidget.flat(
                  width: w,
                  child: AspectRatio(
                    aspectRatio: HexagonType.FLAT.ratio,
                    child: Image.asset(
                      'assets/bee.jpg',
                      fit: BoxFit.fitHeight,
                    ),
                  ),
' ' ' 

having a documented example would be nice!