I am try to set time picker module in material design angular 6 theme but I cannot set because in this theme using MAT format for material design.
I had used many module for time picker but in material theme can't set ng or md or other module.
I am try to set time picker module in material design angular 6 theme but I cannot set because in this theme using MAT format for material design.
I had used many module for time picker but in material theme can't set ng or md or other module.
 
    
     
    
    Approach ignite-ui-angular
npm install -g igniteui-cli 
app.module.ts
import { BrowserModule } from '@angular/platform-browser';
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';
// Here we import the IgxGridModule, so we can use the igxGrid!
import { IgxGridModule } from 'igniteui-angular';
@NgModule({
  declarations: [
    AppComponent
  ],
  imports: [
    BrowserModule,
    BrowserAnimationsModule,
    IgxGridModule
  ],
  providers: [],
  bootstrap: [AppComponent]
})
export class AppModule { }
component
// app.module.ts
...
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
import { IgxTimePickerModule } from 'igniteui-angular';
@NgModule({
    ...
    imports: [..., BrowserAnimationsModule, IgxTimePickerModule],
    ...
})
export class AppModule {}
meeting.component.html
<igx-time-picker ></igx-time-picker>
