Tenemos una computadora con un solo discoduro que no tiene tabla de particiones o no tiene formato y queremos recuperar el disco
- Una USB booteable con Linux
This Gist confirms the Linked Identity in my OpenPGP key, and links it to this GitHub account. | |
Token for proof: | |
[Verifying my OpenPGP key: openpgp4fpr:74204f2c24af3d2480e62eda2382ca5fac93d317] |
MaterialApp( | |
title: 'Flutter Ejemplo Tema Oscuro', | |
//Tema Principal, se usa cuando no esta activo el modo oscuro | |
theme: ThemeData( | |
//Se india que este tema tiene un brillo luminoso | |
brightness: Brightness.light, | |
primarySwatch: Colors.pink, | |
), | |
); |
MaterialApp( | |
title: 'Flutter Ejemplo Tema Oscuro', | |
//Tema Principal, se usa cuando no está activo el modo oscuro | |
theme: ThemeData( | |
//Se indica que el tema tiene un brillo luminoso/claro | |
brightness: Brightness.light, | |
primarySwatch: Colors.pink, | |
), | |
//Tema Oscuro, se usa cuando se activa el modo oscuro | |
darkTheme: ThemeData( |
void main (){ | |
// In null-safe Dart, none of these can ever be null. | |
var i = 42; // Inferred to be int. | |
String name = getFileName(); // getFileName() should return string, never null. | |
final b = Foo(); // Inferred to be Foo. | |
// Nullable var declaration just needs an [?] after the type. | |
int? aNullableInt = null; | |
var x; // Inferred nullable | |
#!/bin/bash | |
#remove gnome e gnome-shell | |
#pacman -Rcns gnome-shell gnome gnome-extra | |
#remove pacotes orfãos | |
#sudo pacman -Rs $(pacman -Qdtq) | |
#sudo pacman -S pantheon-session-git cerbere-git gala-git wingpanel-git pantheon-applications-menu-git plank pantheon-default-settings-git pantheon-dpms-helper-git elementary-icon-theme gtk-theme-elementary-git elementary-wallpapers-git wingpanel-indicator-power-git pantheon-print-git pantheon-polkit-agent-git elementary-icon-theme-git lightdm-pantheon-greeter-git ttf-dejavu ttf-droid ttf-freefont ttf-liberation pantheon-files-git pantheon-terminal-git pantheon-code-git pantheon-calculator-git pantheon-music-git pantheon-videos-git pantheon-calendar-git wingpanel-indicator-datetime-git pantheon-screenshot pantheon-photos-git pantheon-camera-git switchboard-git | |
aurman -S cerbere-git contractor-git elementary-icon-theme-git elementary-wallpapers-git file-roller gala-git geary granite-git gtk-theme-elementary-git lightdm lightdm-pantheon-greeter-git networkmanager pantheon- |
import 'package:flutter/material.dart'; | |
final Color darkBlue = Color.fromARGB(255, 18, 32, 47); | |
void main() { | |
runApp(MyApp()); | |
} | |
class MyApp extends StatelessWidget { | |
@override |
SizedBox( | |
height: MediaQuery.of(context).size.width * 0.75, | |
child: DraggableScrollableSheet( | |
expand: false, | |
initialChildSize: 1.0, | |
minChildSize:0.5, | |
maxChildSize: 1.0, | |
builder: (BuildContext context, ScrollController scrollController) { | |
return Container( | |
color: Colors.blue, |
import 'package:flutter/material.dart'; | |
void main() { | |
runApp(MyApp()); | |
} | |
class MyApp extends StatelessWidget { | |
@override | |
Widget build(BuildContext context) { | |
return MaterialApp( |