Open
Description
Steps to reproduce
reproduce my code in an android emulator (i used pixel 9pro).
Expected results
Actual results
Code sample
Code sample
import 'dart:ui';
import 'package:flutter/material.dart';
class WeatherScreen extends StatelessWidget {
const WeatherScreen({super.key});
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
centerTitle: true,
title: const Text(
"Weather App",
style: TextStyle(fontWeight: FontWeight.bold),
),
actions: [
IconButton(
onPressed: () {
debugPrint("refresh");
},
icon: Icon(Icons.refresh),
),
],
),
body: Padding(
padding: const EdgeInsets.all(16.0),
child: Column(
children: [
//ISSUE STARTS HERE
//main card
SizedBox(
width: double.infinity,
child: Card(
elevation: 10,
shape: RoundedRectangleBorder(
borderRadius: BorderRadiusGeometry.circular(16),
),
child: ClipRRect(
borderRadius: BorderRadiusGeometry.circular(16),
child: BackdropFilter(
filter: ImageFilter.blur(sigmaX: 10, sigmaY: 10),
child: const Padding(
padding: EdgeInsetsGeometry.all(16),
child: Column(
mainAxisAlignment: MainAxisAlignment.spaceAround,
children: [
Text(
"300F",
style: TextStyle(
fontSize: 32,
fontWeight: FontWeight.bold,
),
),
Icon(Icons.cloud, size: 64),
SizedBox(height: 8),
Text("Rain", style: TextStyle(fontSize: 18)),
],
),
),
),
),
),
),
const SizedBox(height: 20),
//weather forecast cards
const Placeholder(fallbackHeight: 150),
const SizedBox(height: 20),
//weather forecast cards
const Placeholder(fallbackHeight: 150),
],
),
),
);
}
}
Screenshots or Video
Screenshots / Video demonstration
[Upload media here]
Logs
Logs
[Paste your logs here]
Flutter Doctor output
Doctor output
[√] Flutter (Channel stable, 3.32.2, on Microsoft Windows [Version 10.0.26100.4349], locale en-IN) [286ms]
• Flutter version 3.32.2 on channel stable at C:\Flutter\src\flutter
• Upstream repository https://github.com/flutter/flutter.git
• Framework revision 8defaa71a7 (7 days ago), 2025-06-04 11:02:51 -0700
• Engine revision 1091508939
• Dart version 3.8.1
• DevTools version 2.45.1
[√] Windows Version (Windows 11 or higher, 24H2, 2009) [2.1s]
[√] Android toolchain - develop for Android devices (Android SDK version 35.0.1) [3.9s]
• Android SDK at C:\Users\abird\AppData\Local\Android\sdk
• Platform android-35, build-tools 35.0.1
• Java binary at: C:\Program Files\Android\Android Studio\jbr\bin\java
This is the JDK bundled with the latest Android Studio installation on this machine.
To manually set the JDK path, use: `flutter config --jdk-dir="path/to/jdk"`.
• Java version OpenJDK Runtime Environment (build 21.0.6+-13368085-b895.109)
• All Android licenses accepted.
[X] Chrome - develop for the web (Cannot find Chrome executable at "C:\Program Files\Google\Chrome Dev\Application\chrome.exe") [18ms]
! "C:\Program Files\Google\Chrome Dev\Application\chrome.exe" is not executable.
[X] Visual Studio - develop Windows apps [17ms]
X Visual Studio not installed; this is necessary to develop Windows apps.
Download at https://visualstudio.microsoft.com/downloads/.
Please install the "Desktop development with C++" workload, including all of its default components
[√] Android Studio (version 2024.3.2) [15ms]
• Android Studio at C:\Program Files\Android\Android Studio
• 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 21.0.6+-13368085-b895.109)
[√] VS Code (version 1.100.3) [14ms]
• VS Code at C:\Users\abird\AppData\Local\Programs\Microsoft VS Code
• Flutter extension version 3.112.0
[√] Connected device (3 available) [245ms]
• sdk gphone64 x86 64 (mobile) • emulator-5554 • android-x64 • Android 16 (API 36) (emulator)
• Windows (desktop) • windows • windows-x64 • Microsoft Windows [Version 10.0.26100.4349]
• Edge (web) • edge • web-javascript • Microsoft Edge 137.0.3296.68
[√] Network resources [1,387ms]
• All expected network resources are available.
! Doctor found issues in 2 categories.