flutter-woocommerce-app/LabelStoreMax/lib/widgets/app_loader.dart

18 lines
535 B
Dart

// Label StoreMAX
//
// Created by Anthony Gordon.
// 2020, WooSignal Ltd. All rights reserved.
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
import 'package:flutter/widgets.dart';
import 'package:flutter_spinkit/flutter_spinkit.dart';
import '../helpers/tools.dart';
Widget showAppLoader() {
return SpinKitDoubleBounce(color: HexColor("#393318"));
}