Activities of "devbariscanyilmaz@gmail.com"

You can do this with abp angular FormValidation.

There is a community article and sample repository

Answer

You can create a component and add it to nav items by

constructor(private navItems: NavItemsService) {
    navItems.addItems([
      {
        id: 'MySearchInput',
        order: 1,
        component: MySearchInputComponent,
      },
      {
        id: 'SignOutIcon',
        html: '<i class="fas fa-sign-out-alt fa-lg text-white m-2"><i>',
        action: () => console.log('Clicked the sign out icon'),
        order: 101, // puts as last element
      },
    ]);
  }

You can define your notification component with new icon and add it to navItems. Checkout the document

Answer

Is it from chat module? I want to be sure.

Hi, yes i did.

However the documentation feels outdated and unmaintained.
Following the tutorial did not help.

We will update documentation.

Hi, do you want to run android project or web project. If you want to run android project run expo start --android or yarn expo android Also, you are running v6.0.1 project so you should look v6.0 document

Showing 1 to 6 of 6 entries
Made with ❤️ on ABP v8.2.0-preview Updated on March 25, 2024, 15:11