Skip to content

Instantly share code, notes, and snippets.

View glintpursuit's full-sized avatar
🎯
Focusing

Abhi glintpursuit

🎯
Focusing
View GitHub Profile
#nullable enable
using System;
using System.Collections.Generic;
using Xamarin.Forms;
using Xamarin.Forms.Shapes;
namespace ShapeDemo.Controls
{
public class RatingControl : StackLayout
{
@agungsb
agungsb / ribbon_shape.dart
Created September 10, 2018 14:07
Flutter's Ribbon Shape
import 'package:flutter/material.dart';
class RibbonShape extends StatefulWidget {
@override
RibbonShapeState createState() => RibbonShapeState();
}
class RibbonShapeState extends State<RibbonShape> {
@override
Widget build(BuildContext context) {