You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks for the library.
I have a question to ask you.
I want to combine two components to make a progress bar with Shimmer.
But the child property received by Shimmer.fromColors must require a Container with color, and the Container will inherit the size of the parent. Probably related to the filter.
It's not elegant to write it this way, I'd rather pass a SizedBox() when overlaying, e.g.
Shimmer.fromColors(
baseColor: pColor,
highlightColor: Colors.white70,
child: SizedBox(),
),
Can you tell me the reason why I can't use SizedBox().
Thanks for the library.
I have a question to ask you.
I want to combine two components to make a progress bar with Shimmer.
But the child property received by Shimmer.fromColors must require a Container with color, and the Container will inherit the size of the parent. Probably related to the filter.
It's not elegant to write it this way, I'd rather pass a SizedBox() when overlaying, e.g.
Shimmer.fromColors(
baseColor: pColor,
highlightColor: Colors.white70,
child: SizedBox(),
),
Can you tell me the reason why I can't use SizedBox().
The text was updated successfully, but these errors were encountered: