mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-09-14 11:09:04 +00:00
8 lines
268 B
Dart
8 lines
268 B
Dart
![]() |
import 'package:app_flowy/home/domain/page_context.dart';
|
||
|
import 'package:flutter/material.dart';
|
||
|
|
||
|
abstract class HomeStackPage extends StatefulWidget {
|
||
|
final PageContext pageContext;
|
||
|
const HomeStackPage({Key? key, required this.pageContext}) : super(key: key);
|
||
|
}
|