Questions related to drawing or setting shadows on an object. It refers to graphical shadow in user interfaces and 3D rendering and not to be confused with conceptual shadows (copies) of an object, library, database etc.
Questions tagged [shadow]
2031 questions
0
votes
0 answers
How to remove the shadow in the Xamarin.Forms application
When scrolling from above and below appears a white shadow, how can I remove it?
The application uses the "ThriveGmbH.BottomNavigationBar.XF" library, but this shadow appears on regular pages
Top of page
Bottom of page
0
votes
1 answer
Border to shadow CSS
How I can add border to shadow?
I wan't make something similar to this
Here's my code:
.btn {
margin: 10px;
}
.btn:active span {
transform: translate(0, 6px);
box-shadow: 0 -5px 0 blue;
transition: 0.3s;
}
.btn {
display:…

Kojer Defor
- 149
- 1
- 7
0
votes
0 answers
Html video remove black bottom shadow
So, I have removed all the media controls in the video tag but I cannot remove bottom black shadow. I want to remove the black shadow and show only play button.
How can I change video tag's the bottom shadow or remove it in the HTML?

nihadk
- 1
- 2
0
votes
1 answer
Drawing a shadow for a CGMutablePath, not closed, just a line
I have the function Track.getShadowPath() that is returning a CGMutablePath.
Function returning CGMutablePath
static func getShadowPath() -> CGMutablePath{
let trackPath = CGMutablePath()
let initPoint = Track.tracks.first?.initPoint
…

gotramaval
- 59
- 9
0
votes
1 answer
Line circle with shadow swift
I created line circle with shadow, but when I tried to change shadowRadius, the shadow was not showing
let path = UIBezierPath(ovalIn: rect)
let shapeLayer = CAShapeLayer()
shapeLayer.path = path.cgPath
shapeLayer.fillColor …

YuraChudnick
- 15
- 6
0
votes
1 answer
How to make a shadow effect on a image view?
I'd like to make a shadow effect on a view just like the one in the Podcasts app. Take a look at the picture below.
Since I know how to make a shadow effect on a view with a mono color, I thought I could nail it by using the clear color for a shadow…

pearl7721
- 320
- 1
- 12
0
votes
1 answer
How to set shadow to line?
I do not know how to do it
-

Qew
- 31
- 1
- 1
- 8
0
votes
2 answers
Apply corner radius to the decreasing button
I have a very good-looking button.
import UIKit
class NiseButtonVC: UIViewController {
var button = MyShrinkingButton()
var button2 = UIButton()
override func viewDidLoad() {
super.viewDidLoad()
view.backgroundColor = .white
button =…

Sergey
- 37
- 7
0
votes
1 answer
Chart.js remove shadow from line chart
can anyone tell me how can I remove the shadow behind the line chart as in the image below?
Image with the shadow
Thanks in advance :)

szef0
- 33
- 5
0
votes
2 answers
How to give a shadow effect to a frame in xamarin forms
I am new in xamarin I wan to add a shadow effect to my frame and avoid the top border line of my frame, I tried "hasShadow" property of frame but that doesn't help me. How can I do this.
Please help me
Here is my Xaml

Swathy
- 199
- 1
- 5
- 24
0
votes
1 answer
I need to remove inner shadow when I click a button
this is my extension that I use for add inner shadow into my button.
i create all case where I want my shadow into the button or my view.
public extension UIView
{
// different inner shadow styles
public enum innerShadowSide
{
…
0
votes
0 answers
Add shadow to UITableView inside a UINavigationController
I have added shadow in viewDidLoad, but it does not appeared. UINavigationController clip to bound is set to false, but still shadow is clipped. Do you know why, how to render shadow?
tableview.layer.shadowOffset = CGSize(width: 10, height:…

János
- 32,867
- 38
- 193
- 353
0
votes
1 answer
iOS - view inside stackview not showing up shadow
I have designed popup view using UIStackView.
I'm trying to shadow to "Alert View" as showing in the picture. Parameters for shadow are shown at the right side.
But it is not showing shadow after I run code.
But if I design this popup without…

Pramod More
- 1,220
- 2
- 22
- 51
0
votes
1 answer
Shadow not visible on top of "sibling" view
I'm trying to create a shadow on the top a view. This is my hierarchy:
View
------TablewView
------BottomView
TableView and BottomView have the same parent: View.
I want the BottomView to have a shadow on top of the TableView like the pic on the…

DanielZanchi
- 2,708
- 1
- 25
- 37
0
votes
1 answer
How do i get the largest rectangle from casting from a point to corners of a polygon?
I am building a shader in which I use ray casting. I am casting from one point(the light) onto the corners of a body(polygon). As this will be used for a mobile game I would like maximum performance and only want to get the outer lines(the other…

jay
- 25
- 5