-
Notifications
You must be signed in to change notification settings - Fork 29.7k
Closed
Labels
P2Important issues not at the top of the work listImportant issues not at the top of the work lista: adaptivityAdapting to platform, screen size, input type, etcAdapting to platform, screen size, input type, etca: fidelityMatching the OEM platforms betterMatching the OEM platforms betterf: material designflutter/packages/flutter/material repository.flutter/packages/flutter/material repository.found in release: 3.16Found to occur in 3.16Found to occur in 3.16frameworkflutter/packages/flutter repository. See also f: labels.flutter/packages/flutter repository. See also f: labels.good first issueRelatively approachable for first-time contributorsRelatively approachable for first-time contributorsplatform-iosiOS applications specificallyiOS applications specificallyplatform-macBuilding on or for macOS specificallyBuilding on or for macOS specificallyteam-designOwned by Design Languages teamOwned by Design Languages teamtriaged-designTriaged by Design Languages teamTriaged by Design Languages team
Description
Steps to reproduce
Run the following app on macOS or iOS:
class IssueApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return const MaterialApp(
home: Center(
child: CircularProgressIndicator.adaptive(
value: 0.5,
),
),
);
}
}Expected behavior
You expect to see a partially revealed Cupertino activity indicator.
Actual behavior
You see an indeterminate (continually animated) Cupertino activity indicator
Analysis
The adaptive progress indicator is coded to always use the default CupertinoActivityIndicator constructor, which is always indeterminate:
| return CupertinoActivityIndicator(key: widget.key, color: tickColor); |
Metadata
Metadata
Assignees
Labels
P2Important issues not at the top of the work listImportant issues not at the top of the work lista: adaptivityAdapting to platform, screen size, input type, etcAdapting to platform, screen size, input type, etca: fidelityMatching the OEM platforms betterMatching the OEM platforms betterf: material designflutter/packages/flutter/material repository.flutter/packages/flutter/material repository.found in release: 3.16Found to occur in 3.16Found to occur in 3.16frameworkflutter/packages/flutter repository. See also f: labels.flutter/packages/flutter repository. See also f: labels.good first issueRelatively approachable for first-time contributorsRelatively approachable for first-time contributorsplatform-iosiOS applications specificallyiOS applications specificallyplatform-macBuilding on or for macOS specificallyBuilding on or for macOS specificallyteam-designOwned by Design Languages teamOwned by Design Languages teamtriaged-designTriaged by Design Languages teamTriaged by Design Languages team