
Research
/Security News
Malicious npm Packages Target WhatsApp Developers with Remote Kill Switch
Two npm packages masquerading as WhatsApp developer libraries include a kill switch that deletes all files if the phone number isn’t whitelisted.
github.com/bluemix/gradient-widgets
In your pubspec.yaml
root add:
dependencies:
gradient_widgets: ^0.3.1
then,
import 'package:gradient_widgets/gradient_widgets.dart';
A minimal set of Flutter widgets encased with beautiful gradients.
You can use them when your UI needs user attention/focus, , e.g., login or send actions, or important shopping item title (see Gradient Screens to get the idea 😉)
☑️ GradientText
☑️ GradientCard
☑️ GradientButton
☑️ CircularGradientButton
☑️ GradientProgressIndicator
◻️ CircularGradientProgressIndicator
GradientCard
GradientCard(gradient: Gradients.tameer);
most parameters are the same as the Card
.
GradientProgressIndicator
must be gradient.colors.length = 2
indeterminate
GradientProgressIndicator(
gradient: Gradients.rainbowBlue,
);
determinate
GradientProgressIndicator(
gradient: Gradients.rainbowBlue,
value: 0.65,
);
GradientButton
GradientButton(
child: Text('Gradient'),
callback: () {},
gradient: Gradients.backToFuture,
),
most parameters are the same as any *Button
.
CircularGradientButton
CircularGradientButton(
child: Icon(Icons.gradient),
callback: (){},
gradient: Gradients.rainbowBlue,
),
most parameters are the same as FloatingActionButton
.
GradientText
GradientText('Hello',
shaderRect: Rect.fromLTWH(0.0, 0.0, 50.0, 50.0),
gradient: Gradients.hotLinear,
style: TextStyle(fontSize: 40.0,),);
all parameters are the same as the Text
.
For help getting started with Flutter, view our online documentation.
For help on editing package code, view the documentation.
FAQs
Unknown package
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.
Research
/Security News
Two npm packages masquerading as WhatsApp developer libraries include a kill switch that deletes all files if the phone number isn’t whitelisted.
Research
/Security News
Socket uncovered 11 malicious Go packages using obfuscated loaders to fetch and execute second-stage payloads via C2 domains.
Security News
TC39 advances 11 JavaScript proposals, with two moving to Stage 4, bringing better math, binary APIs, and more features one step closer to the ECMAScript spec.