my_testing_package 0.0.1 copy "my_testing_package: ^0.0.1" to clipboard
my_testing_package: ^0.0.1 copied to clipboard

A new Flutter package used for testing the core and base packages.

example/main.dart

import 'package:flutter/material.dart';

void main() {
  return runApp(_App());
}

class _App extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      theme: ThemeData(primarySwatch: Colors.blue),
      home: _MyHomePage(),
    );
  }
}

class _MyHomePage extends StatefulWidget {
  // ignore: prefer_const_constructors_in_immutables
  _MyHomePage({Key? key}) : super(key: key);

  @override
  _MyHomePageState createState() => _MyHomePageState();
}

class _MyHomePageState extends State<_MyHomePage> {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
        appBar: AppBar(
          title: const Text('Test'),
        ),
        body: Container(child: Text('Test')));
  }
}
0
likes
120
pub points
0%
popularity

Publisher

unverified uploader

A new Flutter package used for testing the core and base packages.

Repository (GitHub)
View/report issues

Documentation

API reference

License

unknown (LICENSE)

Dependencies

flutter, vector_math

More

Packages that depend on my_testing_package