aloerina01 / til

1日1つだけ強くなる
6 stars 0 forks source link

2018/06/05 flutter navigaton, demo動画gif生成 #8

Open aloerina01 opened 6 years ago

aloerina01 commented 6 years ago

Read Navigate to a new screen and back

試しに実装してみた

output

onPressed: () {
  Navigator.push(
    context,
    new MaterialPageRoute(builder: (context) => new ChatScreen())
  );
}

おそらく内部的には下記の戻るロジックが動いている。

onPressed: () {
  Navigator.pop(context);
}

gif生成メモ

demo動画をつくるの久々だったのでやり方忘れていた。のでメモしておく。

ffmpeg  -i input.mov -vf scale=320:-1 -r 10 output.gif
aloerina01 commented 6 years ago

https://qiita.com/granoeste/items/19c119ffc36a016e6223