-
Notifications
You must be signed in to change notification settings - Fork 29.7k
Closed
flutter/packages
#8582Labels
P2Important issues not at the top of the work listImportant issues not at the top of the work listf: cupertinoflutter/packages/flutter/cupertino repositoryflutter/packages/flutter/cupertino repositoryf: focusFocus traversal, gaining or losing focusFocus traversal, gaining or losing focusfound in release: 3.27Found to occur in 3.27Found to occur in 3.27found in release: 3.28Found to occur in 3.28Found to occur in 3.28frameworkflutter/packages/flutter repository. See also f: labels.flutter/packages/flutter repository. See also f: labels.has reproducible stepsThe issue has been confirmed reproducible and is ready to work onThe issue has been confirmed reproducible and is ready to work onr: fixedIssue is closed as already fixed in a newer versionIssue is closed as already fixed in a newer versionteam-designOwned by Design Languages teamOwned by Design Languages teamtriaged-designTriaged by Design Languages teamTriaged by Design Languages teamworkaround availableThere is a workaround available to overcome the issueThere is a workaround available to overcome the issue
Description
Steps to reproduce
- Tap on a
CupertinoListTileto launchUrl(url). - Observe that the tile occasionally remains in the
backgroundColorActivatedstate (gray background color) after launchUrl.
Expected results
The CupertinoListTile should not remain in the backgroundColorActivated state after navigation. The background color should reset to the default state.
Actual results
The CupertinoListTile occasionally remains in the backgroundColorActivated state (gray background color) after navigation.
Code sample
Code sample
import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
import 'package:google_fonts/google_fonts.dart';
import 'package:provider/provider.dart';
import 'package:url_launcher/url_launcher.dart';
class SettingsMainPage extends StatelessWidget {
const SettingsMainPage({super.key});
Future<void> _launchPrivacyPolicy() async {
final Uri url = Uri.parse(
'https://www.apple.com/legal/internet-services/itunes/dev/stdeula/');
if (!await launchUrl(url)) {
throw Exception('Could not launch $url');
}
}
Future<void> _launchTermsOfUse() async {
final Uri url = Uri.parse(
'https://www.apple.com/legal/internet-services/itunes/dev/stdeula/');
if (!await launchUrl(url)) {
throw Exception('Could not launch $url');
}
}
@override
Widget build(BuildContext context) {
return Consumer<AppStateModel>(
builder: (context, model, child) {
return CupertinoPageScaffold(
child: CustomScrollView(
semanticChildCount: 2,
slivers: <Widget>[
CupertinoSliverNavigationBar(
largeTitle: Text('Settings'),
),
SliverSafeArea(
top: false,
minimum: EdgeInsets.only(top: 10),
sliver: SliverList.separated(
itemCount: 2,
itemBuilder: (BuildContext context, int index) {
if (index == 0) {
return CupertinoListTile(
title: Text('Privacy Policy',
style: GoogleFonts.poppins(
fontSize: 17,
fontWeight: FontWeight.w400,
)),
onTap: _launchPrivacyPolicy,
);
} else if (index == 1) {
return CupertinoListTile(
title: Text('Terms of Use',
style: GoogleFonts.poppins(
fontSize: 17,
fontWeight: FontWeight.w400,
)),
onTap: _launchTermsOfUse,
);
}
return null;
},
separatorBuilder: (BuildContext context, int index) =>
Padding(
padding: EdgeInsets.symmetric(horizontal: 20.0),
child: Divider(
height: 1,
thickness: 1,
color: Colors.grey[300],
),
),
),
)
],
),
);
},
);
}
}
Screenshots or Video
Screenshots / Video demonstration
[Upload media here]
Logs
Logs
[Paste your logs here]Flutter Doctor output
Doctor output
[✓] Flutter (Channel stable, 3.27.1, on macOS 15.2 24C101 darwin-x64, locale zh-Hans-CN)
• Flutter version 3.27.1 on channel stable at /Users/liyue/Developer/SDK/flutter
• Upstream repository https://github.com/flutter/flutter.git
• Framework revision 17025dd882 (4 weeks ago), 2024-12-17 03:23:09 +0900
• Engine revision cb4b5fff73
• Dart version 3.6.0
• DevTools version 2.40.2
[✓] Android toolchain - develop for Android devices (Android SDK version 35.0.0)
• Android SDK at /Users/liyue/Library/Android/sdk
• Platform android-35, build-tools 35.0.0
• Java binary at: /Applications/Android Studio.app/Contents/jbr/Contents/Home/bin/java
• Java version OpenJDK Runtime Environment (build 17.0.10+0-17.0.10b1087.21-11572160)
• All Android licenses accepted.
[✓] Xcode - develop for iOS and macOS (Xcode 16.2)
• Xcode at /Applications/Xcode.app/Contents/Developer
• Build 16C5032a
• CocoaPods version 1.16.2
[✓] Chrome - develop for the web
• Chrome at /Applications/Google Chrome.app/Contents/MacOS/Google Chrome
[✓] Android Studio (version 2023.3)
• Android Studio at /Applications/Android Studio.app/Contents
• Flutter plugin can be installed from:
🔨 https://plugins.jetbrains.com/plugin/9212-flutter
• Dart plugin can be installed from:
🔨 https://plugins.jetbrains.com/plugin/6351-dart
• Java version OpenJDK Runtime Environment (build 17.0.10+0-17.0.10b1087.21-11572160)
[✓] VS Code (version 1.96.3)
• VS Code at /Applications/Visual Studio Code.app/Contents
• Flutter extension version 3.102.0
[✓] Connected device (4 available)
• iPhone 16 Pro (mobile) • 17B20026-583C-4CD7-BDD3-5595615B4A60 • ios • com.apple.CoreSimulator.SimRuntime.iOS-18-2 (simulator)
• macOS (desktop) • macos • darwin-x64 • macOS 15.2 24C101 darwin-x64
• Chrome (web) • chrome • web-javascript • Google Chrome 131.0.6778.266
[✓] Network resources
• All expected network resources are available.
• No issues found!Metadata
Metadata
Assignees
Labels
P2Important issues not at the top of the work listImportant issues not at the top of the work listf: cupertinoflutter/packages/flutter/cupertino repositoryflutter/packages/flutter/cupertino repositoryf: focusFocus traversal, gaining or losing focusFocus traversal, gaining or losing focusfound in release: 3.27Found to occur in 3.27Found to occur in 3.27found in release: 3.28Found to occur in 3.28Found to occur in 3.28frameworkflutter/packages/flutter repository. See also f: labels.flutter/packages/flutter repository. See also f: labels.has reproducible stepsThe issue has been confirmed reproducible and is ready to work onThe issue has been confirmed reproducible and is ready to work onr: fixedIssue is closed as already fixed in a newer versionIssue is closed as already fixed in a newer versionteam-designOwned by Design Languages teamOwned by Design Languages teamtriaged-designTriaged by Design Languages teamTriaged by Design Languages teamworkaround availableThere is a workaround available to overcome the issueThere is a workaround available to overcome the issue