honey 0.2.1 honey: ^0.2.1 copied to clipboard
The sweet side of testing. An end to end testing framework for Flutter.
import 'package:flutter/material.dart';
import 'package:honey/honey.dart';
const kIsHoney = bool.fromEnvironment('HONEY');
void main() {
if (kIsHoney) {
HoneyWidgetsBinding.ensureInitialized();
}
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return Container();
}
}