This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:flutter/foundation.dart'; | |
import 'package:flutter/widgets.dart'; | |
import 'package:flutter_svg/flutter_svg.dart'; | |
import 'package:xml/xml.dart'; | |
import 'package:flutter/services.dart'; | |
/// An example widget which uses an [SvgOverride] widget to render an SVG with dynamic colors. | |
class ZenButtonCookie extends StatelessWidget { | |
final CookieColor color; // My internal color object. Adapt this for your needs. | |
const ZenButtonCookie(this.color); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
777 Brockton Avenue, Abington MA 2351 | |
30 Memorial Drive, Avon MA 2322 | |
250 Hartford Avenue, Bellingham MA 2019 | |
700 Oak Street, Brockton MA 2301 | |
66-4 Parkhurst Rd, Chelmsford MA 1824 | |
591 Memorial Dr, Chicopee MA 1020 | |
55 Brooksby Village Way, Danvers MA 1923 | |
137 Teaticket Hwy, East Falmouth MA 2536 | |
42 Fairhaven Commons Way, Fairhaven MA 2719 | |
374 William S Canning Blvd, Fall River MA 2721 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.commnet-form-wrap { | |
border-top: 1px solid #03121d33; | |
border-bottom: 1px solid #03121d33; | |
padding: 10px 0; | |
} | |
.commnet-form-avatar { | |
flex: 0 0 32px; | |
padding:0; | |
margin-right: 8px; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
useEffect(() => { | |
if( location.pathname == '/community' ){ | |
const search = location.search; | |
const hashtagParam = new URLSearchParams(search).get('hashtag'); | |
const tab = new URLSearchParams(search).get('tab'); | |
let _currentPostType = currentPostType; | |
if( tab ){ | |
switch (tab) { | |
case PostTypes.Following.toLowerCase(): | |
_currentPostType = PostTypes.Following; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"openapi": "3.0.0", | |
"info": { | |
"version": "1.0.0", | |
"title": "DOCUMENTATION", | |
"description": "", | |
"termsOfService": "YOUR_TERMS_OF_SERVICE_URL", | |
"contact": { | |
"name": "TEAM", | |
"email": "contact-email@something.io", |
OlderNewer