first commit

This commit is contained in:
CHIEFSOFT\ameye
2023-05-12 22:30:08 -04:00
commit cea49e295a
667 changed files with 39490 additions and 0 deletions
@@ -0,0 +1,25 @@
/*
Authors : initappz (Rahul Jograna)
Website : https://initappz.com/
App Name : E-Learning App Template
This App Template Source code is licensed as per the
terms found in the Website https://initappz.com/license
Copyright and Good Faith Purchasers © 2021-present initappz.
*/
import { NgModule } from '@angular/core';
import { Routes, RouterModule } from '@angular/router';
import { RemoveBookmarkPage } from './remove-bookmark.page';
const routes: Routes = [
{
path: '',
component: RemoveBookmarkPage
}
];
@NgModule({
imports: [RouterModule.forChild(routes)],
exports: [RouterModule],
})
export class RemoveBookmarkPageRoutingModule { }
@@ -0,0 +1,28 @@
/*
Authors : initappz (Rahul Jograna)
Website : https://initappz.com/
App Name : E-Learning App Template
This App Template Source code is licensed as per the
terms found in the Website https://initappz.com/license
Copyright and Good Faith Purchasers © 2021-present initappz.
*/
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { FormsModule } from '@angular/forms';
import { IonicModule } from '@ionic/angular';
import { RemoveBookmarkPageRoutingModule } from './remove-bookmark-routing.module';
import { RemoveBookmarkPage } from './remove-bookmark.page';
@NgModule({
imports: [
CommonModule,
FormsModule,
IonicModule,
RemoveBookmarkPageRoutingModule
],
declarations: [RemoveBookmarkPage]
})
export class RemoveBookmarkPageModule { }
@@ -0,0 +1,49 @@
<!--
Authors : initappz (Rahul Jograna)
Website : https://initappz.com/
App Name : E-Learning App Template
This App Template Source code is licensed as per the
terms found in the Website https://initappz.com/license
Copyright and Good Faith Purchasers © 2021-present initappz.
-->
<ion-header mode="ios" class="ion-no-border">
<ion-toolbar>
<ion-title>Remove from bookmark?</ion-title>
</ion-toolbar>
</ion-header>
<ion-content class="ion-padding">
<div class="bg_white">
<div class="list">
<div class="bg_image back_image" [style.backgroundImage]="'url(assets/images/p2.jpg)'"></div>
<div class="detail">
<ion-label class="bg_text">3D Design</ion-label>
<ion-label class="name">3D Design Illustration</ion-label>
<ion-label class="price">$48.00 </ion-label>
<div class="row">
<ion-icon name="star-half-outline" color="warning"></ion-icon>
<ion-label class="small">4.9</ion-label>
<ion-label class="small">|</ion-label>
<ion-label class="small">8266 Students</ion-label>
</div>
</div>
</div>
<ion-icon slot="end" name="bookmark" class="save" color="primary"></ion-icon>
</div>
</ion-content>
<ion-footer>
<ion-toolbar>
<ion-row>
<ion-col size="6">
<ion-label class="cancel" (click)="onBack()">Cancel</ion-label>
</ion-col>
<ion-col size="6">
<ion-label class="detail_button" (click)="onBack()">Yes, Continue</ion-label>
</ion-col>
</ion-row>
</ion-toolbar>
</ion-footer>
@@ -0,0 +1,117 @@
/*
Authors : initappz (Rahul Jograna)
Website : https://initappz.com/
App Name : E-Learning App Template
This App Template Source code is licensed as per the
terms found in the Website https://initappz.com/license
Copyright and Good Faith Purchasers © 2021-present initappz.
*/
ion-header {
ion-title {
font-size: 16px;
font-family: 'bold';
}
}
ion-content {
.bg_white {
display: flex;
align-items: flex-start;
background-color: white;
padding: 15px;
box-shadow: 0px 0px 20px 1px rgba(0, 0, 0, 0.1);
border-radius: 10px;
margin-bottom: 20px;
.list {
display: flex;
align-items: center;
.back_image {
height: 95px;
width: 95px;
border-radius: 10px;
}
.detail {
margin-left: 10px;
.bg_text {
color: var(--ion-color-primary);
background-color: #dfe1f3;
font-size: 12px;
padding: 2px 5px;
border-radius: 5px;
width: 80px;
text-align: center;
}
.name {
font-family: 'bold';
margin-top: 5px;
}
.price {
margin-top: 3px;
color: var(--ion-color-primary);
font-family: 'semi-bold';
}
.row {
display: flex;
align-items: center;
margin-top: 3px;
ion-icon {
font-size: 18px;
}
.small {
margin-left: 8px;
color: grey;
font-size: 14px;
}
}
}
}
}
}
ion-footer {
--background: white;
ion-toolbar {
--border-width: 0px;
padding: 10px;
align-items: center;
.cancel {
width: 100%;
display: flex;
justify-content: center;
text-align: center;
background: #c5caf1;
color: #4B5DFA;
border-radius: 30px;
font-family: 'semi-bold';
padding: 13px 0;
}
.detail_button {
width: 100%;
display: flex;
justify-content: center;
text-align: center;
background: var(--ion-color-primary);
border-radius: 30px;
padding: 13px 0;
color: white;
font-family: 'semi-bold';
}
}
}
@@ -0,0 +1,32 @@
/*
Authors : initappz (Rahul Jograna)
Website : https://initappz.com/
App Name : E-Learning App Template
This App Template Source code is licensed as per the
terms found in the Website https://initappz.com/license
Copyright and Good Faith Purchasers © 2021-present initappz.
*/
import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
import { IonicModule } from '@ionic/angular';
import { RemoveBookmarkPage } from './remove-bookmark.page';
describe('RemoveBookmarkPage', () => {
let component: RemoveBookmarkPage;
let fixture: ComponentFixture<RemoveBookmarkPage>;
beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({
declarations: [RemoveBookmarkPage],
imports: [IonicModule.forRoot()]
}).compileComponents();
fixture = TestBed.createComponent(RemoveBookmarkPage);
component = fixture.componentInstance;
fixture.detectChanges();
}));
it('should create', () => {
expect(component).toBeTruthy();
});
});
@@ -0,0 +1,25 @@
/*
Authors : initappz (Rahul Jograna)
Website : https://initappz.com/
App Name : E-Learning App Template
This App Template Source code is licensed as per the
terms found in the Website https://initappz.com/license
Copyright and Good Faith Purchasers © 2021-present initappz.
*/
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-remove-bookmark',
templateUrl: './remove-bookmark.page.html',
styleUrls: ['./remove-bookmark.page.scss'],
})
export class RemoveBookmarkPage implements OnInit {
constructor() { }
ngOnInit() {
}
onBack() { }
}