We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
how can i set childAspectRatio in LiveGrid?
childAspectRatio
LiveGrid
The text was updated successfully, but these errors were encountered:
@MahdiPishguy
LiveGrid( padding: EdgeInsets.all(16), showItemInterval: Duration(milliseconds: 100), showItemDuration: Duration(milliseconds: 250), gridDelegate: SliverGridDelegateWithFixedCrossAxisCount( // gridDelegate from default grid crossAxisCount: 3, childAspectRatio: 0.55, // <------------ here crossAxisSpacing: 16, mainAxisSpacing: 16, ), itemBuilder: (BuildContext context, int index, animation) => FadeTransition( opacity: Tween<double>( begin: 0, end: 1, ).animate(animation), child: SlideTransition( position: Tween<Offset>( begin: Offset(0, -0.025), end: Offset.zero, ).animate(animation), child: _buildIssue(state.issues[index]), ), ), itemCount: state.issues.length, )
Sorry, something went wrong.
SergeShkurko
No branches or pull requests
how can i set
childAspectRatio
inLiveGrid
?The text was updated successfully, but these errors were encountered: