You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
532 B
21 lines
532 B
import 'package:flutter/material.dart';
|
|
import 'package:recook/pages/lottery/widget/lottery_scaffold.dart';
|
|
|
|
class LotteryCartPage extends StatefulWidget {
|
|
final dynamic arguments;
|
|
LotteryCartPage({Key key, this.arguments}) : super(key: key);
|
|
|
|
@override
|
|
_LotteryCartPageState createState() => _LotteryCartPageState();
|
|
}
|
|
|
|
class _LotteryCartPageState extends State<LotteryCartPage> {
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return LotteryScaffold(
|
|
title: '双色球',
|
|
body: SizedBox(),
|
|
);
|
|
}
|
|
}
|