24 lines
672 B
Dart
24 lines
672 B
Dart
// Label StoreMax
|
|
//
|
|
// Created by Anthony Gordon.
|
|
// 2021, 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/material.dart';
|
|
import 'package:nylo_support/controllers/controller.dart';
|
|
|
|
/// Base Controller for the Nylo
|
|
/// See more on controllers here - https://nylo.dev/docs/2.x/controllers
|
|
class Controller extends BaseController {
|
|
Controller();
|
|
|
|
@override
|
|
construct(BuildContext context) {
|
|
super.construct(context);
|
|
}
|
|
}
|