-
Notifications
You must be signed in to change notification settings - Fork 204
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Not working in release build #36
Comments
I am using this package in my project and it has been published on Store, so I am very sure that it works in release mode. Can you give me codes to reproduce your issue? |
I have same Issue In My app When i use the release version the shimmer not update ui still loading and not show the data When i use Debug Mode Working Good. Version: Flutter Doctor:
Code : Scaffold(
backgroundColor: MyColors().background_color,
appBar: PreferredSize(
preferredSize: Size.fromHeight(0),
child: AppBar(
backgroundColor: Colors.transparent,
elevation: 0,
brightness: Brightness.light,
),
),
body: Consumer<CityDetailsProvider>(
builder: (ctx, data, child) =>
data.waitCityData || data.city_data.name == null
? Shimmer.fromColors(
baseColor: Colors.grey[300],
highlightColor: Colors.grey[100],
enabled: data.waitCityData,
child: _buildCityDetails(data))
: _buildCityDetails(data)));
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
No description provided.
The text was updated successfully, but these errors were encountered: