![Create React App Officially Deprecated Amid React 19 Compatibility Issues](https://cdn.sanity.io/images/cgdhsj6q/production/04fa08cf844d798abc0e1a6391c129363cc7e2ab-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
nativescript-material-button
Advanced tools
If using @nativescript
:
tns plugin add nativescript-material-button
If using tns-core-modules
tns plugin add nativescript-material-button@2.5.4
Be sure to run a new build after adding plugins to avoid any issues.
IMPORTANT: Make sure you include xmlns:mdb="nativescript-material-button"
on the Page element
<Page xmlns:mdb="nativescript-material-button">
<StackLayout horizontalAlignment="center">
<mdb:Button text="raised button"/>
<mdb:Button variant="flat" text="flat button"/>
<mdb:Button variant="text" text="text button"/>
<mdb:Button elevation="5" rippleColor="red" text="raised custom button"/>
</StackLayout>
</Page>
mdbutton {
ripple-color: blue;
elevation: 4;
}
import { NativeScriptMaterialButtonModule } from "nativescript-material-button/angular";
@NgModule({
imports: [
NativeScriptMaterialButtonModule,
...
],
...
})
<MDButton rippleColor="blue" text="text button"></MDButton>
import Vue from 'nativescript-vue';
import ButtonPlugin from 'nativescript-material-button/vue';
Vue.use(ButtonPlugin);
<MDButton rippleColor="blue" text="text button"/>
Inherite from Nativescript Button so it already has all the same attributes
An attribute to set the elevation of the button. This will increase the 'drop-shadow' of the button.
An attribute to set the variant of the button. Can be flat
or text
. No value means raised button
An attribute to set the ripple color of the button.
FAQs
Material button component
The npm package nativescript-material-button receives a total of 2 weekly downloads. As such, nativescript-material-button popularity was classified as not popular.
We found that nativescript-material-button demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.