This commit is contained in:
DMK
2021-01-15 17:28:13 +03:00
parent 6947aa944d
commit 3a22d5c968
10 changed files with 52 additions and 49 deletions

13
.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,13 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "moving_hole",
"request": "launch",
"type": "dart"
}
]
}

BIN
assets/scrns/scrn1.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 157 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.3 MiB

BIN
assets/scrns/scrn2.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 234 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.4 MiB

BIN
assets/scrns/scrn3.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 234 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.4 MiB

BIN
assets/scrns/scrn4.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 147 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 871 KiB

View File

@@ -1,6 +1,6 @@
import 'dart:async'; import 'dart:async';
import 'dart:math';
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
import 'package:flutter/scheduler.dart';
import 'package:moving_hole/animprovider.dart'; import 'package:moving_hole/animprovider.dart';
import 'package:provider/provider.dart'; import 'package:provider/provider.dart';
@@ -18,14 +18,7 @@ class MyApp extends StatelessWidget {
child: MaterialApp( child: MaterialApp(
theme: ThemeData.dark().copyWith(scaffoldBackgroundColor: darkBlue), theme: ThemeData.dark().copyWith(scaffoldBackgroundColor: darkBlue),
debugShowCheckedModeBanner: false, debugShowCheckedModeBanner: false,
home: Scaffold( home: MyWidget(),
appBar: AppBar(
title: Text('Hello, again'),
),
body: Center(
child: MyWidget(),
),
),
)); ));
} }
} }
@@ -38,28 +31,29 @@ class MyWidget extends StatefulWidget {
class _MyWidgetState extends State<MyWidget> { class _MyWidgetState extends State<MyWidget> {
@override @override
void initState() { void initState() {
SchedulerBinding.instance.addPostFrameCallback((timeStamp) async {
AnimProv ap = Provider.of<AnimProv>(context, listen: false); AnimProv ap = Provider.of<AnimProv>(context, listen: false);
ap.foneScreen = 'assets/scrns/scrn1.png'; ap.foneScreen = 'assets/scrns/scrn1.jpg';
// MyTimer(context, true, 10); myTimer(context, true, 10);
});
super.initState(); super.initState();
} }
@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
return Stack(fit: StackFit.expand, children: [ return Scaffold(
body: Stack(fit: StackFit.expand, children: [
Consumer<AnimProv>( Consumer<AnimProv>(
builder: (context, ap, child) => Container( builder: (context, ap, child) => Container(
height: 360, height: 360,
width: 480, width: 480,
child: Image( child: Image.asset(ap.foneScreen ?? 'assets/scrns/scrn1.jpg'
image: AssetImage(
ap.foneScreen,
),
// fit: BoxFit.contain, // fit: BoxFit.contain,
))), ))),
// _getOverlay(), _getOverlay(),
// imageOverlay(), imageOverlay(),
// textOverlay(), textOverlay(),
// Positioned( // Positioned(
// child: Consumer<AnimProv>( // child: Consumer<AnimProv>(
// builder: (context, ap, child) => // builder: (context, ap, child) =>
@@ -69,10 +63,11 @@ class _MyWidgetState extends State<MyWidget> {
// ap.alignX = 0; // ap.alignX = 0;
// ap.alignY = -0.5; // ap.alignY = -0.5;
// }))) // })))
]); ]),
);
} }
void MyTimer(BuildContext context, bool start, int time) async { void myTimer(BuildContext context, bool start, int time) async {
AnimProv ap = Provider.of<AnimProv>(context, listen: false); AnimProv ap = Provider.of<AnimProv>(context, listen: false);
if (start) { if (start) {
int t = 0; int t = 0;
@@ -84,7 +79,7 @@ class _MyWidgetState extends State<MyWidget> {
ap.alignX = 0.0; ap.alignX = 0.0;
ap.alignY = 0; ap.alignY = 0;
ap.picAsset = 'assets/scrns/sign.png'; ap.picAsset = 'assets/scrns/sign.png';
ap.foneScreen = 'assets/scrns/scrn1.png'; ap.foneScreen = 'assets/scrns/scrn1.jpg';
ap.message = 'welcome to Magichess quick tutorial '; ap.message = 'welcome to Magichess quick tutorial ';
} }
if (t == 3) { if (t == 3) {
@@ -93,7 +88,7 @@ class _MyWidgetState extends State<MyWidget> {
ap.alignX = 0.5; ap.alignX = 0.5;
ap.alignY = -0.95; ap.alignY = -0.95;
ap.picAsset = ''; ap.picAsset = '';
ap.foneScreen = 'assets/scrns/scrn2.png'; ap.foneScreen = 'assets/scrns/scrn2.jpg';
ap.message = 'In Magichess you can play either online...'; ap.message = 'In Magichess you can play either online...';
} }
if (t == 6) { if (t == 6) {
@@ -101,7 +96,7 @@ class _MyWidgetState extends State<MyWidget> {
ap.height = 170; ap.height = 170;
ap.alignX = 0.5; ap.alignX = 0.5;
ap.alignY = 0.14; ap.alignY = 0.14;
ap.foneScreen = 'assets/scrns/scrn3.png'; ap.foneScreen = 'assets/scrns/scrn3.jpg';
ap.message = '... or offline!'; ap.message = '... or offline!';
} }
@@ -110,7 +105,7 @@ class _MyWidgetState extends State<MyWidget> {
ap.height = 170; ap.height = 170;
ap.alignX = 0.5; ap.alignX = 0.5;
ap.alignY = 0.14; ap.alignY = 0.14;
ap.foneScreen = 'assets/scrns/scrn4.png'; ap.foneScreen = 'assets/scrns/scrn4.jpg';
} }
await Future.delayed(Duration(seconds: 1)); await Future.delayed(Duration(seconds: 1));
t++; t++;
@@ -121,11 +116,7 @@ class _MyWidgetState extends State<MyWidget> {
Widget textOverlay() { Widget textOverlay() {
return Consumer<AnimProv>( return Consumer<AnimProv>(
builder: (context, ap, child) => Container( builder: (context, ap, child) => Container(
child: Text(ap.message, child: Text(ap.message, style: TextStyle(color: Colors.white, fontSize: 20, fontWeight: FontWeight.bold)),
style: TextStyle(
color: Colors.white,
fontSize: 20,
fontWeight: FontWeight.bold)),
alignment: Alignment.bottomCenter, alignment: Alignment.bottomCenter,
)); ));
} }
@@ -133,7 +124,7 @@ class _MyWidgetState extends State<MyWidget> {
Widget imageOverlay() { Widget imageOverlay() {
return Consumer<AnimProv>( return Consumer<AnimProv>(
builder: (context, ap, child) => Container( builder: (context, ap, child) => Container(
child: Image.asset(ap.picAsset, fit: BoxFit.contain), child: ap.picAsset.isNotEmpty ? Image.asset(ap.picAsset) : Container(),
width: 400, width: 400,
height: 400, height: 400,
alignment: Alignment.center, alignment: Alignment.center,
@@ -152,8 +143,7 @@ class _MyWidgetState extends State<MyWidget> {
child: Consumer<AnimProv>( child: Consumer<AnimProv>(
builder: (context, ap, child) => AnimatedAlign( builder: (context, ap, child) => AnimatedAlign(
duration: Duration(milliseconds: 1000), duration: Duration(milliseconds: 1000),
alignment: alignment: Alignment(ap.alignX, ap.alignY), // need to animate this
Alignment(ap.alignX, ap.alignY), // need to animate this
child: AnimatedContainer( child: AnimatedContainer(
duration: Duration(milliseconds: 1000), duration: Duration(milliseconds: 1000),
margin: const EdgeInsets.only(right: 4, bottom: 4), margin: const EdgeInsets.only(right: 4, bottom: 4),