45 lines
1.9 KiB
Dart
45 lines
1.9 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:flutter_screenutil/flutter_screenutil.dart';
|
|
import 'package:get/get.dart';
|
|
import 'package:regroup/Common/CommonButton.dart';
|
|
import 'package:regroup/Utils/Common/sized_box.dart';
|
|
import 'package:regroup/Utils/texts.dart';
|
|
import 'package:regroup/resources/routes/route_name.dart';
|
|
|
|
class FindCommunityPage extends StatelessWidget {
|
|
const FindCommunityPage({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Scaffold(
|
|
backgroundColor: Color(0xFF222935),
|
|
body: SingleChildScrollView(
|
|
child: Padding(
|
|
padding: EdgeInsets.symmetric(
|
|
vertical: 60.h,
|
|
),
|
|
child: Column(children: [
|
|
sizedBoxHeight(40.h),
|
|
Image.asset("assets/images/png/Organizing projects-pana 1.png"),
|
|
sizedBoxHeight(30.h),
|
|
Padding(
|
|
padding: EdgeInsets.symmetric(horizontal: 10.w),
|
|
child: Column(children: [
|
|
text20400FCFCFC(
|
|
'''ReGroup helps organise individuals into groups, and groups within communities. For example, an individual is part of a local football club, while all the football clubs in the city form a wider football community. If you already know which communities you're interested in, you can search for them here.''',
|
|
textAlign: TextAlign.center),
|
|
sizedBoxHeight(20.h),
|
|
CommonBtn(
|
|
text: "Find communities",
|
|
onTap: () {
|
|
// individualcommunitystep4
|
|
// Get.toNamed(RouteName.individualgroupstep3);
|
|
Get.toNamed(RouteName.individualcommunitystep4);
|
|
}),
|
|
]),
|
|
),
|
|
])),
|
|
));
|
|
}
|
|
}
|