tmp commit

Signed-off-by: fufesou <shuanglongchen@yeah.net>
This commit is contained in:
fufesou
2023-04-20 18:10:06 +08:00
parent 803ed68d42
commit d9755abbc2
7 changed files with 94 additions and 31 deletions

View File

@@ -0,0 +1,27 @@
import 'package:flutter/material.dart';
import 'package:provider/provider.dart';
import '../../../model.dart';
class Display extends StatelessWidget {
final String peerId;
final LocationModel locationModel;
Display({
Key? key,
required this.peerId,
required this.locationModel,
}) : super(key: key);
@override
Widget build(BuildContext context) {
return ChangeNotifierProvider.value(
value: locationModel,
child: Consumer<LocationModel>(builder: (context, model, child) {
return Column(
children: [],
);
}),
);
}
}