feat : new auth in chicken
This commit is contained in:
@@ -4,4 +4,5 @@ export 'fab.dart';
|
||||
export 'fab_outlined.dart';
|
||||
export 'outline_elevated.dart';
|
||||
export 'outline_elevated_icon.dart';
|
||||
export 'text_button.dart';
|
||||
export 'text_button.dart';
|
||||
export 'clear_button.dart';
|
||||
@@ -0,0 +1,8 @@
|
||||
import 'package:flutter/cupertino.dart';
|
||||
|
||||
Widget clearButton(VoidCallback onTap) {
|
||||
return GestureDetector(
|
||||
onTap: onTap,
|
||||
child: Icon(CupertinoIcons.multiply_circle, size: 20),
|
||||
);
|
||||
}
|
||||
23
packages/core/lib/presentation/widget/logo_widget.dart
Normal file
23
packages/core/lib/presentation/widget/logo_widget.dart
Normal file
@@ -0,0 +1,23 @@
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:rasadyar_core/core.dart';
|
||||
|
||||
class LogoWidget extends StatelessWidget {
|
||||
const LogoWidget({super.key});
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return Column(
|
||||
children: [
|
||||
Row(),
|
||||
Assets.images.innerSplash.image(
|
||||
width: 120.w,
|
||||
height: 120.h,
|
||||
),
|
||||
Text(
|
||||
'سامانه رصدیار',
|
||||
style: AppFonts.yekan16.copyWith(color: AppColor.darkGreyNormal),
|
||||
),
|
||||
],
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -3,6 +3,7 @@ export 'bottom_navigation/r_bottom_navigation.dart';
|
||||
export 'bottom_navigation/wave_bottom_navigation.dart';
|
||||
export 'bottom_sheet/base_bottom_sheet.dart';
|
||||
export 'bottom_sheet/date_picker_bottom_sheet.dart';
|
||||
//buttons
|
||||
export 'buttons/buttons.dart';
|
||||
export 'card/card_with_icon_with_border.dart';
|
||||
export 'chips/r_chips.dart';
|
||||
@@ -12,6 +13,13 @@ export 'draggable_bottom_sheet/draggable_bottom_sheet.dart';
|
||||
export 'draggable_bottom_sheet/draggable_bottom_sheet2.dart';
|
||||
export 'draggable_bottom_sheet/draggable_bottom_sheet_controller.dart';
|
||||
export 'empty_widget.dart';
|
||||
//inputs
|
||||
export 'inputs/inputs.dart';
|
||||
//list_item
|
||||
export 'list_item/list_item.dart';
|
||||
export 'list_item/list_item2.dart';
|
||||
export 'list_item/list_item_with_out_number.dart';
|
||||
export 'list_row_item.dart';
|
||||
export 'list_view/list_view.dart';
|
||||
export 'loading_widget.dart';
|
||||
export 'overlay_dropdown_widget/view.dart';
|
||||
@@ -21,11 +29,6 @@ export 'tabs/new_tab.dart';
|
||||
export 'tabs/r_segment.dart';
|
||||
export 'tabs/tab.dart';
|
||||
export 'vec_widget.dart';
|
||||
export 'list_row_item.dart';
|
||||
//inputs
|
||||
export 'inputs/inputs.dart';
|
||||
//list_item
|
||||
export 'list_item/list_item.dart';
|
||||
export 'list_item/list_item2.dart';
|
||||
export 'list_item/list_item_with_out_number.dart';
|
||||
|
||||
// other
|
||||
export 'logo_widget.dart';
|
||||
|
||||
Reference in New Issue
Block a user