integration_test_tizen 2.0.3 copy "integration_test_tizen: ^2.0.3" to clipboard
integration_test_tizen: ^2.0.3 copied to clipboard

Tizen implementation of the integration_test plugin.

example/lib/main.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 'dart:io' show Platform;
import 'package:flutter/material.dart';

// ignore_for_file: public_member_api_docs

void main() => runApp(const MyApp());

class MyApp extends StatefulWidget {
  const MyApp({super.key});

  @override
  State<MyApp> createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(title: const Text('Plugin example app')),
        body: Center(child: Text('Platform: ${Platform.operatingSystem}\n')),
      ),
    );
  }
}
1
likes
140
points
1.47k
downloads

Publisher

verified publishertizen.org

Weekly Downloads

Tizen implementation of the integration_test plugin.

Homepage
Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-3-Clause (license)

Dependencies

flutter

More

Packages that depend on integration_test_tizen

Packages that implement integration_test_tizen