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'; | |
class Distance { | |
final String name; | |
final double toMeters; | |
final double toTransform; | |
} | |
class ConvertDistance extends StatefulWidget { | |
const ConvertDistance({super.key}); |
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
<?php | |
use PhpCsFixer\Config; | |
use PhpCsFixer\Finder; | |
$rules = [ | |
'array_indentation' => true, | |
'array_syntax' => ['syntax' => 'short'], | |
'binary_operator_spaces' => [ | |
'default' => 'single_space', |
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
# Crie a pasta scripts no user | |
# mkdir -p ~/.scripts | |
# Carrega helpers personalizados | |
# Adicione no ~/.zshrc ou ~/.bashrc | |
# [ -f "$HOME/.scripts/helpers.sh" ] && source "$HOME/.scripts/helpers.sh" | |
# ----------------------- |
OlderNewer