skip to Main Content

Javascript – Toggling between card info

I have a child component which displays information when you click on its button. information-data.component.html <div class="col-12 col-sm-12 col-md-12 col-lg-12"> <div class="col-sm-12 col-md-12 col-lg-12 p-2 info"> <h6 (click)="questionClick()">{{headName}} <fa-icon [icon]="icons.faInfoCircle" class="fa-1x text-primary" transform="shrink-2"></fa-icon> </h6> </div> <ng-template #childTemplate> <div class="row" [hidden]="visibleStatus">…

VIEW QUESTION

Flutter Unable to create corner curved color padding

Orange color corner curve padding not archive but here I get straight line only suggest any check my code..! Widget build(Context context) { return Padding( padding: EdgeInsets.symmetric(vertical: 6.0, horizontal: 6.0), child: Card( elevation: 6.0, color: Colors.white, clipBehavior: Clip.hardEdge, shape: RoundedRectangleBorder(…

VIEW QUESTION
Back To Top
Search