homeMixin top-level constant
String
const homeMixin
Implementation
const homeMixin = """
import 'package:flutter/material.dart';
import 'package:flutter_native_splash/flutter_native_splash.dart';
import '../view/home_view.dart';
mixin HomeMixin on State<HomeView> {
@override
void initState() {
super.initState();
removeSplash();
}
void removeSplash() => widget.firstOpen == true ? FlutterNativeSplash.remove() : null;
}
""";