Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions performance/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 0.2.0

- Increased minimum Flutter SDK version to `3.24.0`.
- Increased minimum Dart SDK version to `3.5.0`.
- Updated dependencies.

## 0.1.1

* Fixed warnings introduced by Flutter 3 (`SchedulerBinding.instance` is now non-nullable).
Expand Down
8 changes: 4 additions & 4 deletions performance/example/lib/main.dart
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
import 'package:flutter/material.dart';
import 'package:flutter_web_plugins/flutter_web_plugins.dart';
import 'package:funvas/funvas.dart';
import 'package:performance/performance.dart';
import 'package:performance_example/widgets/funvas.dart';
import 'package:performance_example/widgets/link.dart';
import 'package:url_strategy/url_strategy.dart';

void main() {
setPathUrlStrategy();
usePathUrlStrategy();
runApp(const ExampleApp());
}

class ExampleApp extends StatelessWidget {
const ExampleApp({Key? key}) : super(key: key);
const ExampleApp({super.key});

@override
Widget build(BuildContext context) {
Expand All @@ -30,7 +30,7 @@ class ExampleApp extends StatelessWidget {
}

class _HomePage extends StatefulWidget {
const _HomePage({Key? key}) : super(key: key);
const _HomePage();

@override
_HomePageState createState() => _HomePageState();
Expand Down
4 changes: 2 additions & 2 deletions performance/example/lib/widgets/link.dart
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ import 'package:url_launcher/link.dart' show LinkTarget;
class Link extends StatelessWidget {
/// Creates a [Link] widget.
const Link({
Key? key,
super.key,
required this.url,
required this.body,
this.targetBlank = true,
}) : super(key: key);
});

/// The URL to be opened when clicking the link.
///
Expand Down
Loading
Loading