blob: cd831b1bce1f31e1ddc817d876deba0bc72fe58c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
import 'package:flutter_ics_homescreen/export.dart';
import 'widgets/profiles_content.dart';
class ProfilesPage extends StatelessWidget {
const ProfilesPage({super.key});
static Page<void> page() => const MaterialPage<void>(child: ProfilesPage());
@override
Widget build(BuildContext context) {
return const Scaffold(
body: Stack(
children: [
ProfilesContent(),
],
),
);
}
}
|