Skip to content
Open
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
4 changes: 4 additions & 0 deletions packages/cupertino_ui/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## NEXT

- Internal changes

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is not a pending changelog, but I just noticed this is a private class, so it should be ok to land? We are learning the flutter/packages ways together. :)

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm not sure. Even if they were public classes, I don't know why we'd want a changelog entry.


## 1.0.1

- Add missing Widget of the Week videos to widget API docs.
Expand Down
7 changes: 3 additions & 4 deletions packages/cupertino_ui/lib/src/sliding_segmented_control.dart
Original file line number Diff line number Diff line change
Expand Up @@ -101,15 +101,15 @@ const Duration _kHighlightAnimationDuration = Duration(milliseconds: 200);

class _Segment<T> extends StatefulWidget {
const _Segment({
required ValueKey<T> key,
required ValueKey<T> super.key,
required this.child,
required this.pressed,
required this.highlighted,
required this.isDragging,
required this.enabled,
required this.segmentLocation,
required this.isMomentary,
}) : super(key: key);
});

final Widget child;

Expand Down Expand Up @@ -238,8 +238,7 @@ class _SegmentState<T> extends State<_Segment<T>> with TickerProviderStateMixin<

// Fadeout the separator when either adjacent segment is highlighted.
class _SegmentSeparator extends StatefulWidget {
const _SegmentSeparator({required ValueKey<int> key, required this.highlighted})
: super(key: key);
const _SegmentSeparator({required ValueKey<int> super.key, required this.highlighted});

final bool highlighted;

Expand Down
4 changes: 4 additions & 0 deletions packages/material_ui/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## NEXT

- Internal changes

## 1.1.0

- Add missing Widget of the Week videos to widget API docs.
Expand Down
Loading