upload_testing_source 1.0.2 copy "upload_testing_source: ^1.0.2" to clipboard
upload_testing_source: ^1.0.2 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: const Text('Test'));
  }
}
1
likes
70
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 upload_testing_source