flutter_splash_tizen 0.1.0
flutter_splash_tizen: ^0.1.0 copied to clipboard
Flutter-tizen package that allows to add custom splash-screen images into your apps.
example/lib/main.dart
import 'package:flutter/material.dart';
void main() => runApp(const MyApp());
class MyApp extends StatelessWidget {
const MyApp({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Welcome to Flutter',
home: Scaffold(
appBar: AppBar(
title: const Text('Welcome to Flutter'),
),
body: const Center(
child: Text('sample app for flutter splash tizen'),
),
),
);
}
}