增加商城页面
This commit is contained in:
24
ln_jq_app/lib/pages/c_page/mall/view.dart
Normal file
24
ln_jq_app/lib/pages/c_page/mall/view.dart
Normal file
@@ -0,0 +1,24 @@
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:flutter_inappwebview/flutter_inappwebview.dart';
|
||||
import 'package:getx_scaffold/getx_scaffold.dart';
|
||||
|
||||
import 'controller.dart';
|
||||
|
||||
class MallPage extends GetView<MallController> {
|
||||
const MallPage({super.key});
|
||||
|
||||
Widget _buildView() {
|
||||
return Stack(children: []);
|
||||
}
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return GetBuilder<MallController>(
|
||||
init: MallController(),
|
||||
id: 'mall',
|
||||
builder: (_) {
|
||||
return _buildView();
|
||||
},
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user