aves_mio/.flutter/dev/integration_tests/ui/lib/main.dart
Fabio Micheluz 2c988f959b
Some checks are pending
Quality check / Flutter analysis (push) Waiting to run
Quality check / CodeQL analysis (java-kotlin) (push) Waiting to run
first commit
2026-02-19 13:25:23 +01:00

38 lines
1.1 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.
import 'package:flutter/material.dart';
import 'package:flutter_driver/driver_extension.dart';
void main() {
enableFlutterDriverExtension();
runApp(
MaterialApp(
home: Material(
child: Builder(
builder: (BuildContext context) {
return TextButton(
child: const Text('flutter drive lib/xxx.dart', textDirection: TextDirection.ltr),
onPressed: () {
Navigator.push<Object?>(
context,
MaterialPageRoute<Object?>(
builder: (BuildContext context) {
return const Material(
child: Center(
child: Text('navigated here', textDirection: TextDirection.ltr),
),
);
},
),
);
},
);
},
),
),
),
);
}