chitochi / flutter_inset_shadow

This package extends BoxShadow and BoxDecoration to support the inset property. [maintainer=@chitochi]

Home Page:https://pub.dev/packages/flutter_inset_shadow

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Flutter inset Box Shadow

abdulrehmananwar opened this issue · comments

on container shape : BoxShape.circle, its not working fine please give any solution

Yes sorry, at the moment it is not implemented. I'll take care of it.

In the meantime, you can try to put a very high border-radius on your container:

Container(
    decoration: BoxDecoration(
        borderRadius: BorderRadius.circular(double.infinity),
    ),
    // ...
),

Actually I think I have implemented it, on my side it seems to work, can you give me an example that does not work please?
Thanks in advance.

I'm closing this issue for now because I can't reproduce it. Feel free to reopen it.