|
|
|
// SPDX-FileCopyrightText: Copyright 2023 Open Mobile Platform LLC <community@omp.ru>
|
|
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
|
|
|
|
abstract class AppStatefulWidget extends StatefulWidget {
|
|
|
|
const AppStatefulWidget({super.key});
|
|
|
|
}
|