mirror of
https://github.com/flutter/flutter.git
synced 2025-06-03 00:51:18 +00:00

This adds a smoke test for every single API example. It also fixes 17 tests that had bugs in them, or were otherwise broken, and even fixes one actual bug in the framework, and one limitation in the framework. The bug in the framework is that NetworkImage's _loadAsync method had await response.drain<List<int>>();, but if the response is null, it will throw a cryptic exception saying that Null can't be assigned to List<int>. The fix was just to use await response.drain<void>(); instead. The limitation is that RelativePositionedTransition takes an Animation<Rect> rect parameter, and if you want to use a RectTween with it, the value emitted there is Rect?, and one of the examples was just casting from Animation<Rect> to Animation<Rect?>, which is invalid, so I modified RelativePositionedTransition to take a Rect? and just use Rect.zero if the rect is null.
107 lines
3.6 KiB
Dart
107 lines
3.6 KiB
Dart
// Copyright 2014 The Flutter Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
// Template: dev/snippets/config/templates/freeform.tmpl
|
|
//
|
|
// Comment lines marked with "▼▼▼" and "▲▲▲" are used for authoring
|
|
// of samples, and may be ignored if you are just exploring the sample.
|
|
|
|
// Flutter code sample for ErrorWidget
|
|
//
|
|
//***************************************************************************
|
|
//* ▼▼▼▼▼▼▼▼ description ▼▼▼▼▼▼▼▼ (do not modify or remove section marker)
|
|
|
|
// This example shows how to override the standard error widget builder in release
|
|
// mode, but use the standard one in debug mode.
|
|
//
|
|
// The error occurs when you click the "Error Prone" button.
|
|
|
|
//* ▲▲▲▲▲▲▲▲ description ▲▲▲▲▲▲▲▲ (do not modify or remove section marker)
|
|
//***************************************************************************
|
|
|
|
//*************************************************************************
|
|
//* ▼▼▼▼▼▼▼▼ code-imports ▼▼▼▼▼▼▼▼ (do not modify or remove section marker)
|
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
//* ▲▲▲▲▲▲▲▲ code-imports ▲▲▲▲▲▲▲▲ (do not modify or remove section marker)
|
|
//*************************************************************************
|
|
|
|
//********************************************************************
|
|
//* ▼▼▼▼▼▼▼▼ code ▼▼▼▼▼▼▼▼ (do not modify or remove section marker)
|
|
|
|
void main() {
|
|
// Set the ErrorWidget's builder before the app is started.
|
|
ErrorWidget.builder = (FlutterErrorDetails details) {
|
|
// This is how to tell if you're in debug mode: Assertions are only executed in
|
|
// debug mode.
|
|
bool inDebug = false;
|
|
assert(() {
|
|
inDebug = true;
|
|
return true;
|
|
}());
|
|
// If we're in debug mode, use the normal error widget which shows the error
|
|
// message:
|
|
if (inDebug) {
|
|
return ErrorWidget(details.exception);
|
|
}
|
|
// In release builds, show a yellow-on-blue message instead:
|
|
return Container(
|
|
alignment: Alignment.center,
|
|
child: Text(
|
|
'Error!\n${details.exception}',
|
|
style: const TextStyle(color: Colors.yellow),
|
|
textAlign: TextAlign.center,
|
|
textDirection: TextDirection.ltr,
|
|
),
|
|
);
|
|
};
|
|
|
|
// Start the app.
|
|
runApp(const MyApp());
|
|
}
|
|
|
|
class MyApp extends StatefulWidget {
|
|
const MyApp({Key? key}) : super(key: key);
|
|
|
|
static const String _title = 'ErrorWidget Sample';
|
|
|
|
@override
|
|
State<MyApp> createState() => _MyAppState();
|
|
}
|
|
|
|
class _MyAppState extends State<MyApp> {
|
|
bool throwError = false;
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
if (throwError) {
|
|
// Since the error widget is only used during a build, in this contrived example,
|
|
// we purposely throw an exception in a build function.
|
|
return Builder(
|
|
builder: (BuildContext context) {
|
|
throw Exception('oh no, an error');
|
|
},
|
|
);
|
|
} else {
|
|
return MaterialApp(
|
|
title: MyApp._title,
|
|
home: Scaffold(
|
|
appBar: AppBar(title: const Text(MyApp._title)),
|
|
body: Center(
|
|
child: TextButton(
|
|
onPressed: () {
|
|
setState(() { throwError = true; });
|
|
},
|
|
child: const Text('Error Prone')),
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|
|
}
|
|
|
|
//* ▲▲▲▲▲▲▲▲ code ▲▲▲▲▲▲▲▲ (do not modify or remove section marker)
|
|
//********************************************************************
|