♻️ Using activities based explore

This commit is contained in:
2025-05-08 22:13:59 +08:00
parent 419ed666f6
commit 039f5b202f
5 changed files with 317 additions and 37 deletions

11
lib/widgets/check_in.dart Normal file
View File

@ -0,0 +1,11 @@
import 'package:flutter/widgets.dart';
import 'package:hooks_riverpod/hooks_riverpod.dart';
class CheckInWidget extends HookConsumerWidget {
const CheckInWidget({super.key});
@override
Widget build(BuildContext context, WidgetRef ref) {
return const Placeholder();
}
}