mirror of
https://github.com/foss42/apidash.git
synced 2025-06-19 21:39:14 +08:00
22 lines
486 B
Dart
22 lines
486 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:apidash/widgets/widgets.dart';
|
|
import 'environments_pane.dart';
|
|
|
|
class EnvironmentPage extends StatelessWidget {
|
|
const EnvironmentPage({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return const Column(
|
|
children: [
|
|
Expanded(
|
|
child: DashboardSplitView(
|
|
sidebarWidget: EnvironmentsPane(),
|
|
mainWidget: SizedBox(),
|
|
),
|
|
),
|
|
],
|
|
);
|
|
}
|
|
}
|