Compare commits

..

No commits in common. "41e0117c65b7ad28a022d88f688be747722c40ab" and "f6a466872f1f60f00aeed6661a2c6e23876fc5b1" have entirely different histories.

5 changed files with 3 additions and 81 deletions

View File

@ -1,76 +0,0 @@
import 'package:flutter/widgets.dart';
class RotateIconController {
VoidCallback? forward;
VoidCallback? reverse;
VoidCallback? reset;
}
class RotateIcon extends StatefulWidget {
const RotateIcon({
Key? key,
required this.icon,
required this.curve,
this.controller,
this.animationDurationMultiplier = 1.0,
this.rotationPercent = 0.5,
}) : super(key: key);
final Widget icon;
final Curve curve;
final RotateIconController? controller;
final double animationDurationMultiplier;
final double rotationPercent;
@override
State<RotateIcon> createState() => _RotateIconState();
}
class _RotateIconState extends State<RotateIcon>
with SingleTickerProviderStateMixin {
late final AnimationController animationController;
late final Animation<double> animation;
late final Duration duration;
@override
void initState() {
duration = Duration(
milliseconds: (500 * widget.animationDurationMultiplier).toInt(),
);
animationController = AnimationController(
vsync: this,
duration: duration,
);
animation = Tween<double>(
begin: 0.0,
end: widget.rotationPercent,
).animate(
CurvedAnimation(
curve: widget.curve,
parent: animationController,
),
);
widget.controller?.forward = animationController.forward;
widget.controller?.reverse = animationController.reverse;
widget.controller?.reset = animationController.reset;
super.initState();
}
@override
void dispose() {
animationController.dispose();
widget.controller?.forward = null;
widget.controller?.reverse = null;
super.dispose();
}
@override
Widget build(BuildContext context) {
return RotationTransition(
turns: animation,
child: widget.icon,
);
}
}

View File

@ -32,7 +32,6 @@ class _MainScreenWidgetState extends State<MainScreenWidget> {
title: Row( title: Row(
// mainAxisAlignment: MainAxisAlignment.center, // mainAxisAlignment: MainAxisAlignment.center,
children: [ children: [
// use png instead
SvgPicture.asset( SvgPicture.asset(
Assets.svg.drifterIcon, Assets.svg.drifterIcon,
height: 30, height: 30,

View File

@ -1,5 +1,6 @@
import 'dart:io'; import 'dart:io';
import 'package:drifter/pages/main_screen/main_screen_widget.dart';
import 'package:drifter/theme/app_colors.dart'; import 'package:drifter/theme/app_colors.dart';
import 'package:flutter/cupertino.dart'; import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
@ -26,7 +27,6 @@ class _SplashState extends State<Splash> {
@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
var isAndroid;
return Scaffold( return Scaffold(
backgroundColor: AppColors.background, backgroundColor: AppColors.background,
body: Center( body: Center(
@ -55,7 +55,6 @@ class _SplashState extends State<Splash> {
const SizedBox( const SizedBox(
height: 250, height: 250,
), ),
//replace with rotating drifter icon
if (Platform.isAndroid) if (Platform.isAndroid)
const CircularProgressIndicator( const CircularProgressIndicator(
color: AppColors.mainAccent, color: AppColors.mainAccent,

View File

@ -6,7 +6,7 @@ abstract class Assets {
class _PNG { class _PNG {
const _PNG(); const _PNG();
String get drifterPNG => "assets/images/logo/drifter_vector.png"; // String get drifterIcon => "assets/images/logo/drifter_vector.png";
} }
class _SVG { class _SVG {

View File

@ -63,7 +63,7 @@ flutter:
# To add assets to your application, add an assets section, like this: # To add assets to your application, add an assets section, like this:
assets: assets:
- assets/images/logo/ - assets/images
# - images/a_dot_ham.jpeg # - images/a_dot_ham.jpeg
# An image asset can refer to one or more resolution-specific "variants", see # An image asset can refer to one or more resolution-specific "variants", see