Merge branch 'main' into fix-android-splash-screen

pull/2779/head
Niaz Sagor 3 weeks ago committed by GitHub
commit 601244ec99
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -1,8 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<!-- Include Cleartext traffic for the espresso package -->
<application android:usesCleartextTraffic="true" />
<!-- The network security config is needed for Espresso testing since it
uses http cleartext traffic.
-->
<application android:networkSecurityConfig="@xml/network_security_config">
<meta-data android:name="io.flutter.network-policy"
android:resource="@xml/network_security_config"/>
</application>
</manifest>

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<network-security-config>
<!-- Cleartext is needed for Espresso testing. -->
<base-config cleartextTrafficPermitted="true">
</base-config>
</network-security-config>

@ -49,6 +49,7 @@ class _AnimatedListDemoState extends State<AnimatedListDemo> {
parent: animation,
curve: const Interval(0.0, 1.0),
),
// ignore: deprecated_member_use
axisAlignment: 0.0,
child: _buildItem(user),
),

Loading…
Cancel
Save