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
Currently, my timeline like this image: But i wanna like this image, add line in the end (in red square), so how to do this? My code:
Expanded( child: Timeline.tileBuilder( theme: TimelineThemeData( nodePosition: 0, color: ThemeHelper.backgroundRealm(context), connectorTheme: const ConnectorThemeData( thickness: 3.0, ), ), builder: TimelineTileBuilder.connected( indicatorBuilder: (context, index) { return DotIndicator( size: 18, color: ThemeHelper.primaryBlueColor(context), border: Border.all( color: ThemeHelper.borderProcessHistoryDot( context), width: 3, ), ); }, connectorBuilder: (_, index, connectorType) { return SolidLineConnector( indent: connectorType == ConnectorType.start ? 5.0 : 5.0, endIndent: connectorType == ConnectorType.end ? 5.0 : 5.0, color: ThemeHelper.black(context), thickness: 1, ); }, indicatorPositionBuilder: (context, index) => 0, contentsBuilder: (_, index) => WidgetA, itemExtentBuilder: (_, index) { return 110; }, itemCount: processHistoryList.length, ), ), )
Thank you so much!
The text was updated successfully, but these errors were encountered:
any solution bro?
Sorry, something went wrong.
No branches or pull requests
Currently, my timeline like this image:
But i wanna like this image, add line in the end (in red square), so how to do this?
My code:
Thank you so much!
The text was updated successfully, but these errors were encountered: