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
*, | |
*::after, | |
*::before { | |
box-sizing: border-box; | |
} | |
pre { | |
appearance: none; | |
white-space: normal !important; | |
} |
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/material.dart'; | |
import 'package:flutter/cupertino.dart'; | |
import 'package:flutter/services.dart'; | |
void main() => runApp(MyApp()); | |
/// Inspiration taken from [modal_bottom_sheet](https://github.com/jamesblasco/modal_bottom_sheet) | |
class _CupertinoBottomSheetContainer extends StatelessWidget { | |
/// Widget to render | |
final Widget child; |
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
/** | |
* @type {import('@rspack/cli').Configuration} | |
*/ | |
const ReactRefreshPlugin = require('@rspack/plugin-react-refresh'); | |
const pkg = require('./package.json'); | |
const rspack = require('@rspack/core'); | |
const path = require('path'); | |
const isDev = process.env.NODE_ENV === 'development'; | |
const isDevBuild = process.env.NODE_ENV === 'none' | |
const VERSION = pkg.version; |
OlderNewer