kcs_test_container 0.0.1
kcs_test_container: ^0.0.1 copied to clipboard
Test Container App is a Flutter app that helps you to test your Flutter widgets and UI components in a container.
Test Container #
A simple Flutter package that provides a greeting message.
Installation #
Add this to your package's pubspec.yaml
file:
dependencies:
test_container: ^0.0.1
code:
import 'package:kcs_test_container/test_container.dart';
void main() { final testContainer = TestContainer(); print(testContainer.greet('World')); // Output: Hello, World! }