KO
|
EN
gitlite — search
Search
#swift
#python
#php
#react
#javascript
#nodejs
#ruby
#encryption
#android
#ios
#golang
#machine-learning
simple_shadow
★ 41
Open GitHub ↗
A customizable shadow for any widget
Download README (.md)
Explore Similar Repositories
CVE-2021-43798
:
CVE-2021-43798 - Grafana 8.x Path Traversal (Pre-Auth)
truth-social
:
A copy of the Truth Social source code for tracking changes and public examination
laravel-mysql-use-index-scope
:
A super simple package allowing for use MySQL 'USE INDEX' and 'FORCE INDEX' statements.
FBMSNet
:
This is the PyTorch implementation of the FBMSNet architecture for EEG-MI classification.
Drone_Hacking_Guideline
:
본 프로젝트는 KITRI BoB(Best of the Best) 10기에서 진행한 프로젝트로, 드론에 대한 취약성 연구를 진행한 내용을 기록하였습니다.
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
simple_shadow
?
Download (.md)
# simple_shadow A customizable shadow for any widget ## Getting Started import: ``` dart import 'package:simple_shadow/simple_shadow.dart'; ``` example: ```dart SimpleShadow( child: Image.asset('images/bird.png'), opacity: 0.6, // Default: 0.5 color: Colors.blue, // Default: Black offset: Offset(5, 5), // Default: Offset(2, 2) sigma: 7, // Default: 2 ) ```  ### Default  ### Color: Colors.blue  ### Opacity: 1  ### Sigma: 10  ### Offset: Offset(10, 10) 