Д
Есть ли способы побороть это дело, чтоб ScrollView скролился вне зависимости от анимации PageView ?
Size: a a a
Д
DB
abstract class CurrentProduct
{
int id;
num price;
CurrentProduct(Map json)
{
this.id = json['id'];
this.price = json['price'];
}
}
class Bottles implements CurrentProduct {
String content;
Bottles(Map json) // вот тут super нужен
{
this.content = json['content'];
}
}
DO
abstract class CurrentProduct
{
int id;
num price;
CurrentProduct(Map json)
{
this.id = json['id'];
this.price = json['price'];
}
}
class Bottles implements CurrentProduct {
String content;
Bottles(Map json) // вот тут super нужен
{
this.content = json['content'];
}
}
implements
а extends
2. Bottles(Map json): super(json) { ... }
DB
CurrentProduct
же абстрактный классDO
CurrentProduct
же абстрактный классDB
DB
ND
VB
АА
AT
AV
AV
EE
AT
АК
AV
AT
АК