0.0.9 • Published 3 years ago

@krishna_dev2022/angular-bottomsheet v0.0.9

Weekly downloads
-
License
-
Repository
-
Last release
3 years ago

Angular Bottomsheet

installtion

npm i @krishna_dev2022/angular-bottomsheet

Then update your app.module.ts

import {BottomsheetModule} from '@krishna_dev2022/angular-bottomsheet';

imports: ...., ...., BottomsheetModule

After that add to your app.component.html

<button (click)="openbottonsheet()"> open </button>

<app-bottomsheet *ngIf="isOpenBottonSheet" containerHeight="300" (closeBottomSheet)="closeBottomSheet()"> -- your Content-- </app-bottomsheet>

containerHeight is optional Defalut value is 300

After that add to your app.component.ts

isOpenBottonSheet=true; openbottonsheet(){ this.isOpenButtonSheet=true; } closeBottomSheet(){ this.isOpenBottonSheet=false; }

0.0.9

3 years ago

0.0.8

3 years ago

0.0.7

3 years ago

0.0.6

3 years ago

0.0.5

3 years ago

0.0.4

3 years ago

0.0.3

3 years ago

0.0.2

3 years ago

0.0.1

3 years ago