Skip to content
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

Cross Axis Alignment fix in content view #19

Merged
merged 1 commit into from
Feb 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
## 0.0.7
## 0.1.1
- Tasks canvas fix to align to top of row instead of center

## 0.1.0
- Labels now use a builder to render in a list
- Dates now use a builder to render in a list
- Title and subtitle now use a builder to render in a list
Expand Down
1 change: 1 addition & 0 deletions lib/src/content/gantt_content.dart
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ class GanttContentState<T> extends State<GanttContent<T>> {
),
Expanded(
child: Row(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
GanttLabels<T>(
config: widget.config,
Expand Down
Loading